summaryrefslogtreecommitdiff
path: root/community/libsmf
diff options
context:
space:
mode:
authorroot <root@rshg054.dnsready.net>2011-12-07 23:14:52 +0000
committerroot <root@rshg054.dnsready.net>2011-12-07 23:14:52 +0000
commit6f9a9504db6338f0c35c4ca70bad42965b74791a (patch)
tree8cd9006f99ed08350063a734502b77e1d0ee7db4 /community/libsmf
parent8736f458a17a03cf79a763a0c8122f93162fed71 (diff)
Wed Dec 7 23:14:52 UTC 2011
Diffstat (limited to 'community/libsmf')
-rw-r--r--community/libsmf/PKGBUILD28
1 files changed, 28 insertions, 0 deletions
diff --git a/community/libsmf/PKGBUILD b/community/libsmf/PKGBUILD
new file mode 100644
index 000000000..62f77a96a
--- /dev/null
+++ b/community/libsmf/PKGBUILD
@@ -0,0 +1,28 @@
+# $Id: PKGBUILD 60154 2011-12-06 08:54:54Z spupykin $
+# Maintainer: Sergej Pupykin <pupykin.s+arch@gmail.com>
+# Maintainer: SpepS <dreamspepser at yahoo dot it>
+
+pkgname=libsmf
+pkgver=1.3
+pkgrel=3
+pkgdesc='A BSD-licensed C library for handling SMF ("*.mid") files.'
+arch=('i686' 'x86_64')
+url="http://sourceforge.net/projects/libsmf/"
+license=('BSD')
+depends=('glib2' 'readline')
+options=('!libtool')
+source=("http://downloads.sourceforge.net/project/libsmf/libsmf/$pkgver/$pkgname-$pkgver.tar.gz")
+md5sums=('eb698f1bc0bad9d5bce4c10386347486')
+
+build() {
+ cd "$srcdir/$pkgname-$pkgver"
+ ./configure --prefix=/usr \
+ --enable-static=no
+ make
+}
+
+package() {
+ cd "$srcdir/$pkgname-$pkgver"
+ make DESTDIR="$pkgdir" install
+ install -Dm644 COPYING "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
+}