blob: 888ce33fc3a174d5152240bde8fba4ebb62aa151 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
|
# Maintainer: stardust95
# Contributor: Namarrgon
pkgname=lebiniou-data
pkgver=3.42
pkgrel=1
pkgdesc="Data files for lebiniou"
arch=('any')
url="https://biniou.net/"
license=('GPL')
source=("https://gitlab.com/lebiniou/lebiniou-data/-/archive/version-$pkgver/lebiniou-data-version-$pkgver.tar.gz")
sha256sums=('fc8f7ec74c37d62196f0e4a06caf62a8fc73e42b1e6cbed2b6193b7df1b9ba59')
build() {
cd "$pkgname-version-$pkgver"
autoreconf -i
./configure --prefix=/usr
}
package() {
cd "$pkgname-version-$pkgver"
make DESTDIR="$pkgdir/" install
}
|