~alpine/devel

This thread contains a patchset. You're looking at the original emails, but you may wish to use the patch review UI. Review patch
1

[alpine-devel] [PATCH] testing/libmaa: new aport

ScrumpyJack <scrumpyjack@me.com>
Details
Message ID
<alpine.LNX.2.20.1503262120210.2247@st.ilet.to>
Sender timestamp
1427404898
DKIM signature
missing
Download raw message
Patch: +41 -0
Provides many low-level data structures which are helpful for writing compilers
http://sourceforge.net/projects/dict/
---
 testing/libmaa/APKBUILD | 41 +++++++++++++++++++++++++++++++++++++++++
 1 file changed, 41 insertions(+)
 create mode 100644 testing/libmaa/APKBUILD

diff --git a/testing/libmaa/APKBUILD b/testing/libmaa/APKBUILD
new file mode 100644
index 0000000..fb9b471
--- /dev/null
+++ b/testing/libmaa/APKBUILD
@@ -0,0 +1,41 @@
# Contributor: ScrumpyJack <scrumpyjack@me.com>
# Maintainer:
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"
-- 
2.3.4




---
Unsubscribe:  alpine-devel+unsubscribe@lists.alpinelinux.org
Help:         alpine-devel+help@lists.alpinelinux.org
---
Leonardo Arena <rnalrd@gmail.com>
Details
Message ID
<1429187130.29822.74.camel@df1844j>
In-Reply-To
<alpine.LNX.2.20.1503262120210.2247@st.ilet.to> (view parent)
Sender timestamp
1429187130
DKIM signature
missing
Download raw message
On gio, 2015-03-26 at 21:21 +0000, ScrumpyJack wrote:
> Provides many low-level data structures which are helpful for writing compilers
> http://sourceforge.net/projects/dict/
> ---

Applied, thanks!

- leo
Reply to thread Export thread (mbox)