summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: 7dd896d8f2ed00b4da62c2a7a3fa3d38c1cef2b8 (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
25
26
27
28
29
30
31
# Maintainer: HurricanePootis <hurricanepootis@protonmail.com>
# Contributor:  grimi <grimi at poczta dot fm>
# Contributor:  speps <speps at aur dot archlinux dot org>
# Contributor: john_schaf <john_schaf@hotmail.fr>

pkgname=xmp
pkgver=4.1.0
pkgrel=2
pkgdesc="The Extended Module Player is a portable command-line module player that supports over 90 module formats (Amiga, Atari, ..)"
arch=(i686 x86_64)
url="http://xmp.sourceforge.net/"
license=('GPL')
depends=('libxmp>=4.4' 'libpulse')
backup=('etc/xmp/xmp.conf' 'etc/xmp/modules.conf')
source=("http://downloads.sourceforge.net/sourceforge/$pkgname/$pkgname-$pkgver.tar.gz")
sha256sums=('1dbd61074783545ac7bef5b5daa772fd2110764cb70f937af8c3fad30f73289e')


build() {
  cd $pkgname-$pkgver
  ./configure --prefix=/usr \
  --disable-oss \
  --enable-pulseaudio
  make
}

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