#Maintainer: Dimitris Jemos #Mandatory pkgname=libmikmod pkgver=3.1.12 pkgrel=2dj source=(http://downloads.sourceforge.net/mikmod/$pkgname-$pkgver.tar.gz) #Optional docs=("AUTHORS" "COPYING.*" "NEWS" "README" "TODO") url=http://sourceforge.net/projects/mikmod/ slackdesc=\ ( #|-----handy-ruler------------------------------------------------------| "libmikmod (a library for playing many types of mod-format files)" "Mikmod is a module player and library supporting many formats," "including mod, s3m, it, and xm. Originally a player for MS-DOS, MikMod" "has been ported to other platforms, such as Unix, Macintosh, BeOS," "and Java(!!)" "Homepage: http://sourceforge.net/projects/mikmod/" ) build() { cd $startdir/src/$pkgname-$pkgver || return 1 ./configure --prefix=/usr --libdir=/usr/lib${LIBDIRSUFFIX} --localstatedir=/var --sysconfdir=/etc \ --mandir=/usr/man \ --infodir=/usr/info \ --enable-threads \ --enable-static=no \ --build=$arch-slackware-linux make -j $numjobs || return 1 make install DESTDIR=$startdir/pkg || return 1 chown -R root:root $startdir/pkg }