summaryrefslogtreecommitdiff
path: root/pcr/mednaffe/PKGBUILD
blob: 908240c30a5643b8b62f662f0c5f6102e9c22993 (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: MasterLaser <vaporeon@tfwno.gf>

pkgname=mednaffe
pkgver=0.8
pkgrel=1
pkgdesc="front-end (GUI) for mednafen emulator"
arch=('i686' 'x86_64')
url="https://sites.google.com/site/amatcoder/mednaffe"
license=('GPL')
install=mednaffe.install
depends=('mednafen' 'gtk3')
source=(https://sites.google.com/site/amatcoder/mednaffe/downloads/mednaffe-$pkgver.tar.gz)
md5sums=('ab7c524d70170b8bba8819e71fc136e0')

build() {
  cd "$srcdir"/mednaffe-$pkgver
  ./configure --prefix=/usr --enable-gtk3
  make
}

package() {
  cd "$srcdir"/mednaffe-$pkgver
  make prefix="$pkgdir"/usr install
}