diff options
author | Marius Lindvall | 2021-05-21 00:30:12 +0200 |
---|---|---|
committer | Marius Lindvall | 2021-05-21 00:30:12 +0200 |
commit | da002219e087e78fe9449299c345b9c52f2f015c (patch) | |
tree | 393690ee0fea21dd9268a76abb431ad7e04b27a4 | |
download | aur-apertium-fra.tar.gz |
Initial commit
-rw-r--r-- | .SRCINFO | 16 | ||||
-rw-r--r-- | PKGBUILD | 28 |
2 files changed, 44 insertions, 0 deletions
diff --git a/.SRCINFO b/.SRCINFO new file mode 100644 index 000000000000..b2aeff54f9e8 --- /dev/null +++ b/.SRCINFO @@ -0,0 +1,16 @@ +pkgbase = apertium-fra + pkgdesc = Apertium linguistic data for French + pkgver = 1.10.0 + pkgrel = 1 + url = https://github.com/apertium/apertium-fra + arch = i686 + arch = x86_64 + license = GPL3 + makedepends = pkgconf + depends = apertium>=3.4.2 + depends = vislcg3 + source = apertium-fra-1.10.0.tar.gz::https://github.com/apertium/apertium-fra/archive/refs/tags/v1.10.0.tar.gz + sha256sums = 38a7465a0872500956f2a0a30184436c6d75eb94c93713e9f603682f833f75bd + +pkgname = apertium-fra + diff --git a/PKGBUILD b/PKGBUILD new file mode 100644 index 000000000000..5cd2fd3de89b --- /dev/null +++ b/PKGBUILD @@ -0,0 +1,28 @@ +# Maintainer: Marius Lindvall <(firstname) {cat} varden {dog} info> +pkgname=apertium-fra +pkgver=1.10.0 +pkgrel=1 +pkgdesc="Apertium linguistic data for French" +url="https://github.com/apertium/${pkgname}" +license=('GPL3') +makedepends=('pkgconf') +depends=('apertium>=3.4.2' 'vislcg3') +arch=('i686' 'x86_64') +source=("${pkgname}-${pkgver}.tar.gz::https://github.com/apertium/${pkgname}/archive/refs/tags/v${pkgver}.tar.gz") +sha256sums=('38a7465a0872500956f2a0a30184436c6d75eb94c93713e9f603682f833f75bd') + +build() { + cd "$srcdir/$pkgname-$pkgver" + ./autogen.sh --prefix=/usr + make +} + +check() { + cd "$srcdir/$pkgname-$pkgver" + make check +} + +package() { + cd "$srcdir/$pkgname-$pkgver" + make DESTDIR="$pkgdir/" install +} |