blob: 1b06cebac12bb7725803da0e5d958f90a13d40f6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
# Maintainer: Pellegrino Prevete <pellegrinoprevete@gmail.com>
pkgname="cue2pops"
pkgver=2.0
pkgrel=3
pkgdesc="Convert Playstation Games To VCD for use with POPS."
arch=('x86_64')
url="https://github.com/tallero/cue2pops-linux"
license=('GPL2')
makedepends=('make')
source=("git+$url#branch=pegando-a-manha")
md5sums=(SKIP)
package() {
cd "${pkgname}-linux"
make
install -Dm755 $pkgname "${pkgdir}/usr/bin/$pkgname"
}
# vim:set ts=2 sw=2 et:
|