31 lines
1003 B
Bash
31 lines
1003 B
Bash
# POWER Maintainer: Alexander Baldeck <alex.bldck@gmail.com>
|
|
# Maintainer: Levente Polyak <anthraxx[at]archlinux[dot]org>
|
|
|
|
pkgname=publicsuffix-list
|
|
_gitcommit=9094af5c6cb260e69137c043c01be18fee01a540
|
|
pkgver=20240306.1440.9094af5
|
|
pkgrel=1.1
|
|
pkgdesc='Cross-vendor public domain suffix database'
|
|
url='https://github.com/publicsuffix/list'
|
|
arch=(any)
|
|
license=('custom:MPL2')
|
|
makedepends=('git')
|
|
source=(${pkgname}::"git+https://github.com/publicsuffix/list#commit=${_gitcommit}")
|
|
sha512sums=('SKIP')
|
|
|
|
pkgver() {
|
|
cd ${pkgname}
|
|
printf "%s.%s.%s" "$(TZ=UTC git show -s --pretty=%cd --date=format-local:%Y%m%d HEAD)" \
|
|
"$(git rev-list --count HEAD)" \
|
|
"$(git rev-parse --short HEAD)"
|
|
}
|
|
|
|
package() {
|
|
cd ${pkgname}
|
|
install -Dm 644 public_suffix_list.dat tests/test_psl.txt -t "${pkgdir}/usr/share/publicsuffix"
|
|
ln -s public_suffix_list.dat "${pkgdir}/usr/share/publicsuffix/effective_tld_names.dat"
|
|
install -Dm 644 LICENSE -t "${pkgdir}/usr/share/licenses/${pkgname}"
|
|
}
|
|
|
|
# vim: ts=2 sw=2 et:
|