Add 'wxedid/' from commit '2038cc4260aabae558438707a548126c6d9f2989'
git-subtree-dir: wxedid git-subtree-mainline:093355368b
git-subtree-split:2038cc4260
This commit is contained in:
commit
78ea923664
2 changed files with 45 additions and 0 deletions
14
wxedid/.SRCINFO
Normal file
14
wxedid/.SRCINFO
Normal file
|
@ -0,0 +1,14 @@
|
||||||
|
pkgbase = wxedid
|
||||||
|
pkgdesc = wxWidgets-based EDID (Extended Display Identification Data) editor
|
||||||
|
pkgver = 0.0.29
|
||||||
|
pkgrel = 1
|
||||||
|
url = https://sourceforge.net/projects/wxedid/
|
||||||
|
arch = i686
|
||||||
|
arch = x86_64
|
||||||
|
license = GPL3
|
||||||
|
depends = wxwidgets-gtk3
|
||||||
|
options = !buildflags
|
||||||
|
source = https://downloads.sourceforge.net/wxedid/wxedid-0.0.29.tar.gz
|
||||||
|
md5sums = 3fc9e1814ae990752defbd48a14670ec
|
||||||
|
|
||||||
|
pkgname = wxedid
|
31
wxedid/PKGBUILD
Normal file
31
wxedid/PKGBUILD
Normal file
|
@ -0,0 +1,31 @@
|
||||||
|
# Maintainer: Jonathan Liu <net147@gmail.com>
|
||||||
|
pkgname=wxedid
|
||||||
|
pkgver=0.0.29
|
||||||
|
pkgrel=1
|
||||||
|
pkgdesc="wxWidgets-based EDID (Extended Display Identification Data) editor"
|
||||||
|
arch=('i686' 'x86_64')
|
||||||
|
url="https://sourceforge.net/projects/wxedid/"
|
||||||
|
license=('GPL3')
|
||||||
|
depends=('wxwidgets-gtk3')
|
||||||
|
options=('!buildflags')
|
||||||
|
source=("https://downloads.sourceforge.net/$pkgname/$pkgname-$pkgver.tar.gz")
|
||||||
|
md5sums=('3fc9e1814ae990752defbd48a14670ec')
|
||||||
|
|
||||||
|
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…
Reference in a new issue