From 2a98d3a18c7c1e31ec6e0a1d2ffa7d7572e281e6 Mon Sep 17 00:00:00 2001 From: Seppia Date: Sat, 2 Jun 2018 13:03:05 +0200 Subject: Init commit --- .SRCINFO | 15 +++++++++++++++ PKGBUILD | 23 +++++++++++++++++++++++ 2 files changed, 38 insertions(+) create mode 100644 .SRCINFO create mode 100644 PKGBUILD diff --git a/.SRCINFO b/.SRCINFO new file mode 100644 index 0000000..f129c78 --- /dev/null +++ b/.SRCINFO @@ -0,0 +1,15 @@ +pkgbase = repofish + pkgdesc = My friends told me to make available this script I wrote to manage my local archlinux repo and AUR packages, so here it is. + pkgver = 0.1 + pkgrel = 1 + url = https://git.seppia.net/repofish.git + arch = any + license = GPLv3 + depends = curl git jq + provides = repofish + conflicts = repofish,repofish + source = https://git.seppia.net/repofish.git/snapshot/repofish-0.1.tar.gz + sha256sums = 6043e48e168bf741c915ec5e9e870791e03b7021d54b6cb8c837c692d93f93c5 + +pkgname = repofish + diff --git a/PKGBUILD b/PKGBUILD new file mode 100644 index 0000000..6cff539 --- /dev/null +++ b/PKGBUILD @@ -0,0 +1,23 @@ +# Maintainer: Seppia +pkgname=repofish +pkgver=0.1 +pkgrel=1 +pkgdesc="My friends told me to make available this script I wrote to manage my local archlinux repo and AUR packages, so here it is." +arch=('any') +url="https://git.seppia.net/repofish.git" +license=('GPLv3') +groups=() +depends=('curl git jq') +provides=("${pkgname}") +conflicts=("${pkgname}","${pkgname%-git}") +replaces=() +backup=() +options=() +install= +source=("https://git.seppia.net/repofish.git/snapshot/${pkgname}-${pkgver}.tar.gz") +sha256sums=('6043e48e168bf741c915ec5e9e870791e03b7021d54b6cb8c837c692d93f93c5') + +package() { + cd "$srcdir/${pkgname}-${pkgver}" + install -D repo.sh $pkgdir/usr/bin/repofish +} -- cgit v1.2.3