Initial import
This commit is contained in:
commit
332931541d
3 changed files with 64 additions and 0 deletions
37
PKGBUILD
Normal file
37
PKGBUILD
Normal file
|
@ -0,0 +1,37 @@
|
|||
# Maintainer: Jonathan Liu <net147@gmail.com>
|
||||
pkgname=wxedid
|
||||
pkgver=0.0.16
|
||||
pkgrel=1
|
||||
pkgdesc="wxWidgets-based EDID (Extended Display Identification Data) editor"
|
||||
arch=('i686' 'x86_64')
|
||||
url="https://sourceforge.net/projects/wxedid/"
|
||||
license=('GPL3')
|
||||
depends=('wxgtk2')
|
||||
source=("https://downloads.sourceforge.net/$pkgname/$pkgname-$pkgver.tar.gz"
|
||||
'configure.patch')
|
||||
md5sums=('0b1a6c49274e0fc3f2398648d99d6954'
|
||||
'519658fdadcbe8c0b66c6d47c1c8715f')
|
||||
|
||||
prepare() {
|
||||
cd "$pkgname-$pkgver"
|
||||
patch -Np1 -i "$srcdir/configure.patch"
|
||||
}
|
||||
|
||||
build() {
|
||||
cd "$pkgname-$pkgver"
|
||||
autoreconf -f -i
|
||||
./configure --prefix=/usr
|
||||
make
|
||||
}
|
||||
|
||||
check() {
|
||||
cd "$pkgname-$pkgver"
|
||||
make -k check
|
||||
}
|
||||
|
||||
package() {
|
||||
cd "$pkgname-$pkgver"
|
||||
make DESTDIR="$pkgdir/" install
|
||||
}
|
||||
|
||||
# vim:set ts=2 sw=2 et:
|
Loading…
Add table
Add a link
Reference in a new issue