arch-ppa/src/reprepro/PKGBUILD

28 lines
794 B
Bash
Raw Normal View History

2016-12-14 14:17:21 -05:00
# Contributor: Andre Klitzing <andre AT incubo DOT de>
# Maintainer: max-k <max-k AT post DOT com>
pkgname=reprepro
2019-07-27 10:40:51 -04:00
pkgver=5.3.0
2016-12-14 14:17:21 -05:00
pkgrel=1
pkgdesc="A tool to handle local repositories of Debian packages"
arch=('i686' 'x86_64')
url="http://mirrorer.alioth.debian.org"
license=('GPL')
2019-07-27 10:40:51 -04:00
depends=('db' 'gpgme' 'zlib' 'bzip2' 'libarchive' 'libgpg-error' 'zlib')
optdepends=('apt: Importing from other sources'
'gnupg' 'inoticoming' 'lzip' 'pinentry')
2016-12-14 14:17:21 -05:00
source=("http://ftp.debian.org/debian/pool/main/r/${pkgname}/${pkgname}_${pkgver}.orig.tar.gz")
2019-07-27 10:40:51 -04:00
sha256sums=('5a5404114b43a2d4ca1f8960228b1db32c41fb55de1996f62bc1b36001f3fab4')
2016-12-14 14:17:21 -05:00
build() {
cd "$srcdir/$pkgname-$pkgver"
./configure --prefix=/usr
make
}
package() {
cd "$srcdir/$pkgname-$pkgver"
make DESTDIR="$pkgdir" install
}