mirror of
https://github.com/moparisthebest/arch-ppa
synced 2024-11-21 08:15:01 -05:00
Add reprepro
This commit is contained in:
parent
36bb51c8bc
commit
dc1e73815a
21
src/reprepro/.SRCINFO
Normal file
21
src/reprepro/.SRCINFO
Normal 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
26
src/reprepro/PKGBUILD
Normal 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
|
||||
}
|
Loading…
Reference in New Issue
Block a user