mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-08-05 05:17:07 +02:00
testing/ubuntu-archive-keyring: new aport
This commit is contained in:
parent
1d8feac4d8
commit
e701bf1210
35
testing/ubuntu-archive-keyring/APKBUILD
Normal file
35
testing/ubuntu-archive-keyring/APKBUILD
Normal file
@ -0,0 +1,35 @@
|
||||
# Contributor: Francesco Colista <fcolista@alpinelinux.org>
|
||||
# Maintainer: Francesco Colista <fcolista@alpinelinux.org>
|
||||
pkgname=ubuntu-archive-keyring
|
||||
pkgver=2016.05.13.1
|
||||
_pkgver=${pkgver%.*}${pkgver//*./-}
|
||||
pkgrel=0
|
||||
pkgdesc="GnuPG archive keys of the Debian archive"
|
||||
url="http://packages.debian.org/sid/debian-archive-keyring"
|
||||
arch="noarch"
|
||||
license="GPL"
|
||||
depends="gnupg"
|
||||
makedepends="tar xz"
|
||||
options="!check" # upstream doesn't have a test suite.
|
||||
subpackages="$pkgname-doc"
|
||||
source="http://ftp.debian.org/debian/pool/main/u/ubuntu-keyring/${pkgname}_${_pkgver}_all.deb"
|
||||
|
||||
unpack() {
|
||||
cd "$srcdir"
|
||||
for i in $source; do
|
||||
case $i in
|
||||
*.deb) ar x ${i##*/} || return 1 ;;
|
||||
esac
|
||||
done
|
||||
}
|
||||
|
||||
build() {
|
||||
return 0
|
||||
}
|
||||
|
||||
package() {
|
||||
mkdir -p "$pkgdir"
|
||||
tar -xJf "$srcdir"/data.tar.xz -C "$pkgdir"/
|
||||
}
|
||||
|
||||
sha512sums="8234457c379d2a3d0524e5ab5abf806aa8c49806ec863e7fd1d95a63c2b32ccbcaf2375e186de3bd0611b1d8f227d4ee03428d63f30f5b45597036fd5d5a0a56 ubuntu-archive-keyring_2016.05.13-1_all.deb"
|
Loading…
Reference in New Issue
Block a user