summaryrefslogtreecommitdiff
path: root/reprepro/PKGBUILD
diff options
context:
space:
mode:
authorMark Weiman <mark.weiman@markzz.com>2016-01-02 01:22:31 -0500
committerMark Weiman <mark.weiman@markzz.com>2016-01-02 01:22:31 -0500
commit5c3b7276abf0d01b53662f38db5b4d52377343ed (patch)
tree8286ac3539ed49a2a1e9a65f8b7fca0976a06de6 /reprepro/PKGBUILD
downloadmarkzz-5c3b7276abf0d01b53662f38db5b4d52377343ed.tar.gz
markzz-5c3b7276abf0d01b53662f38db5b4d52377343ed.zip
initial commit
Signed-off-by: Mark Weiman <mark.weiman@markzz.com>
Diffstat (limited to 'reprepro/PKGBUILD')
-rw-r--r--reprepro/PKGBUILD26
1 files changed, 26 insertions, 0 deletions
diff --git a/reprepro/PKGBUILD b/reprepro/PKGBUILD
new file mode 100644
index 0000000..c085950
--- /dev/null
+++ b/reprepro/PKGBUILD
@@ -0,0 +1,26 @@
+# Contributor: Andre Klitzing <andre AT incubo DOT de>
+# Maintainer: max-k <max-k AT post DOT com>
+
+pkgname=reprepro
+pkgver=4.16.0
+pkgrel=1
+pkgdesc="A tool to handle local repositories of Debian packages"
+arch=('i686' 'x86_64')
+url="http://mirrorer.alioth.debian.org"
+license=('GPL')
+depends=('db' 'gpgme' 'zlib' 'bzip2' 'libarchive')
+optdepends=('apt: Importing from other sources')
+source=("http://ftp.debian.org/debian/pool/main/r/${pkgname}/${pkgname}_${pkgver}.orig.tar.gz")
+sha256sums=('fdd2cae3f23b26e3b44734925af5afb76486a46bde104254eb04d8344d98f591')
+
+build() {
+ cd "$srcdir/$pkgname-$pkgver"
+
+ ./configure --prefix=/usr
+ make
+}
+
+package() {
+ cd "$srcdir/$pkgname-$pkgver"
+ make DESTDIR="$pkgdir" install
+}