Add reprepro

This commit is contained in:
Travis Burtrum 2016-12-14 14:17:21 -05:00
parent 36bb51c8bc
commit dc1e73815a
2 changed files with 47 additions and 0 deletions

21
src/reprepro/.SRCINFO Normal file
View File

@ -0,0 +1,21 @@
# Generated by mksrcinfo v8
# Thu Jun 23 22:39:52 UTC 2016
pkgbase = reprepro
pkgdesc = A tool to handle local repositories of Debian packages
pkgver = 4.17.1
pkgrel = 1
url = http://mirrorer.alioth.debian.org
arch = i686
arch = x86_64
license = GPL
depends = db
depends = gpgme
depends = zlib
depends = bzip2
depends = libarchive
optdepends = apt: Importing from other sources
source = http://ftp.debian.org/debian/pool/main/r/reprepro/reprepro_4.17.1.orig.tar.gz
sha256sums = 1f6668d2dba652a71a7d9fddb39dcf949336513b0aaa4c71c14081e833cc2d5c
pkgname = reprepro

26
src/reprepro/PKGBUILD Normal file
View File

@ -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.17.1
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=('1f6668d2dba652a71a7d9fddb39dcf949336513b0aaa4c71c14081e833cc2d5c')
build() {
cd "$srcdir/$pkgname-$pkgver"
./configure --prefix=/usr
make
}
package() {
cd "$srcdir/$pkgname-$pkgver"
make DESTDIR="$pkgdir" install
}