blob: ab5446c47459400c19efa03138581727e6dcbfa5 (
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
|
# Maintainer: Steffen Weber <-boenki-gmx-de->
# Contributor: Gilles CHAUVIN <gcnweb at gmail dot com>
pkgname=xvid4conf
pkgver=1.13
pkgrel=2
pkgdesc="Creates XviD configuration files"
arch=('x86_64')
url="https://twolife.be"
license=('GPL2')
depends=('gtk3')
source=($url/$pkgname/${pkgname}_${pkgver}.tar.gz)
md5sums=('84dad76f806f0806be670704636b1951')
build() {
cd "$pkgname-$pkgver"
./configure --prefix=/usr --enable-gtk3
make
}
check() {
cd "$pkgname-$pkgver"
make check
}
package() {
cd "$pkgname-$pkgver"
make DESTDIR="$pkgdir" install
}
|