33 lines
986 B
Bash
33 lines
986 B
Bash
# POWER Maintainer: Alexander Baldeck <alex.bldck@gmail.com>
|
|
# Maintainer: Felix Yan <felixonmars@archlinux.org>
|
|
# Contributor: Claudia Pellegrino <aur ät cpellegrino.de>
|
|
# Contributor: Felix Golatofski <contact@xdfr.de>
|
|
# Contributor: Johannes Dewender arch at JonnyJD dot net
|
|
|
|
pkgname=distro-info-data
|
|
pkgver=0.63
|
|
pkgrel=1
|
|
pkgdesc="Information about all releases of Debian and Ubuntu (data files)"
|
|
arch=(any)
|
|
url="https://salsa.debian.org/debian/distro-info-data"
|
|
license=('ISC')
|
|
makedepends=('git')
|
|
checkdepends=('python')
|
|
options=(!emptydirs)
|
|
source=("git+https://salsa.debian.org/debian/distro-info-data.git#tag=debian/$pkgver")
|
|
sha256sums=('e6078c236e5deb818dc07a9723db53ed5abb08609a38bebbda4cef9ada8e544d')
|
|
|
|
check() {
|
|
cd $pkgname
|
|
make test
|
|
}
|
|
|
|
package() {
|
|
cd $pkgname
|
|
make DESTDIR="$pkgdir" install
|
|
install -Dm644 debian/copyright "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
|
|
install -Dm644 -t "$pkgdir"/usr/share/doc/$pkgname README.md
|
|
}
|
|
|
|
# vim:set ts=2 sw=2 et:
|