commit c38bcc21c003dad3f6d3f5b7cb86c8579d32ccf8 Author: Jaroslav Lichtblau Date: Fri Nov 28 20:17:14 2014 +0100 Initial PKGBUILD status as of 28.11.2014 diff --git a/.SRCINFO b/.SRCINFO new file mode 100644 index 000000000000..c57b2f25e99d --- /dev/null +++ b/.SRCINFO @@ -0,0 +1,13 @@ +pkgbase = polygen-data + pkgdesc = Data files for polygen + pkgver = 1.0.6 + pkgrel = 3 + url = http://polygen.org/ + arch = i686 + arch = x86_64 + license = GPL + source = http://lapo.it/polygen/polygen-1.0.6-20110201-grm.zip + md5sums = cdb53a913772868ea453205497a852da + +pkgname = polygen-data + diff --git a/PKGBUILD b/PKGBUILD new file mode 100644 index 000000000000..a959e8336052 --- /dev/null +++ b/PKGBUILD @@ -0,0 +1,21 @@ +# Maintainer: Jaroslav Lichtblau + +pkgname=polygen-data +pkgver=1.0.6 +pkgrel=3 +pkgdesc="Data files for polygen" +arch=('i686' 'x86_64') +url="http://polygen.org/" +license=('GPL') +source=(http://lapo.it/polygen/polygen-$pkgver-20110201-grm.zip) +md5sums=('cdb53a913772868ea453205497a852da') + +package() { + cd "${srcdir}/eng" + + install -d "${pkgdir}/usr/share/polygen" + cp -R * "${pkgdir}/usr/share/polygen" + +#fixing file rights + find "${pkgdir}/usr" -type f -exec chmod 644 "{}" \; +}