summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: dfb3f463151c3b0e068bf333684fd249006a892c (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
# Maintainer: Leonard de Ruijter <alderuijter@gmail.com>

pkgname=mod_musicindex
pkgver=1.4.1
pkgrel=1
pkgdesc="An Apache module which allows nice displaying of directories containing MP3, FLAC, Ogg Vorbis or MP4/AAC files."
url="http://hacks.slashdirt.org/musicindex/"
arch=('i686' 'x86_64')
options=('!strip')
license=('LGPL2.1')
depends=('apache' 'flac' 'libarchive' 'libid3tag' 'libmad' 'libmariadbclient' 'libmp4v2' 'libvorbis')
source=(http://hacks.slashdirt.org/musicindex/$pkgname-$pkgver.tar.gz)
sha256sums=('0fb052ebb8fa511467fd21696d798dee35b2e611955572cf746e9712e531a596')

build() {
  cd $srcdir/$pkgname-$pkgver
  ./configure --datarootdir=/usr/share/ 
  make all
}

package() {
  cd $srcdir/$pkgname-$pkgver
  make DESTDIR="$pkgdir/" install
}