mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2026-02-25 01:31:34 +01:00
42 lines
1.1 KiB
Plaintext
42 lines
1.1 KiB
Plaintext
# Contributor: ScrumpyJack <scrumpyjack@st.ilet.to>
|
|
# Maintainer: ScrumpyJack <scrumpyjack@st.ilet.to>
|
|
pkgname=libmaa
|
|
pkgver=1.3.2
|
|
pkgrel=0
|
|
pkgdesc="Provides many low-level data structures which are helpful for writing compilers"
|
|
url="http://sourceforge.net/projects/dict/"
|
|
arch="all"
|
|
license="GPL"
|
|
depends=""
|
|
depends_dev=""
|
|
makedepends="libtool perl flex"
|
|
install=""
|
|
subpackages="$pkgname-dev"
|
|
source="http://downloads.sourceforge.net/dict/${pkgname}-${pkgver}.tar.gz"
|
|
options="libtool"
|
|
_builddir="${srcdir}/${pkgname}-${pkgver}"
|
|
prepare() {
|
|
local i
|
|
cd "$_builddir"
|
|
for i in $source; do
|
|
case $i in
|
|
*.patch) msg $i; patch -p1 -i "$srcdir"/$i || return 1;;
|
|
esac
|
|
done
|
|
}
|
|
|
|
build() {
|
|
cd "$_builddir"
|
|
./configure --prefix=/usr
|
|
make
|
|
}
|
|
|
|
package() {
|
|
cd "$_builddir"
|
|
make DESTDIR="${pkgdir}" install
|
|
}
|
|
|
|
md5sums="01dab2cde2e0a322653e45bfa63537ee libmaa-1.3.2.tar.gz"
|
|
sha256sums="59a5a01e3a9036bd32160ec535d25b72e579824e391fea7079e9c40b0623b1c5 libmaa-1.3.2.tar.gz"
|
|
sha512sums="dde91e8bf1c08515ff4662282d16a03b18a1dfb16eb7b95be980ba398ed1e65d8cd88e58d454e03a03f48a5ecca8bf23b4ebaf475a98630a9178318c12a1b176 libmaa-1.3.2.tar.gz"
|