2
0
Fork 0

Initial import

This commit is contained in:
Hyacinthe Cartiaux 2013-08-09 17:10:40 +02:00 committed by Hyacinthe Cartiaux
commit a92678c0b8
2 changed files with 31 additions and 0 deletions

13
.SRCINFO Normal file
View File

@ -0,0 +1,13 @@
pkgbase = debian-archive-keyring
pkgdesc = GnuPG archive keys of the Debian archive
pkgver = 2012.4
pkgrel = 2
url = http://packages.debian.org/sid/debian-archive-keyring
arch = any
license = GPL
depends = gnupg
source = http://ftp.fr.debian.org/debian/pool/main/d/debian-archive-keyring/debian-archive-keyring_2012.4_all.deb
md5sums = f27bae2cf146acab9e750fd379dc0ed7
pkgname = debian-archive-keyring

18
PKGBUILD Normal file
View File

@ -0,0 +1,18 @@
# Maintainer: Hyacinthe Cartiaux <hyacinthe.cartiaux@free.fr>
pkgname=debian-archive-keyring
pkgver=2012.4
pkgrel=2
pkgdesc="GnuPG archive keys of the Debian archive"
arch=('any')
url="http://packages.debian.org/sid/debian-archive-keyring"
license=('GPL')
depends=('gnupg')
source=(http://ftp.fr.debian.org/debian/pool/main/d/debian-archive-keyring/${pkgname}_${pkgver}_all.deb)
md5sums=('f27bae2cf146acab9e750fd379dc0ed7')
package() {
tar xzvf ${srcdir}/data.tar.gz -C ${pkgdir}/
}
# vim:set ts=2 sw=2 et: