Compare commits
1 commit
main
...
packages/w
Author | SHA1 | Date | |
---|---|---|---|
4f6429b2fa |
2 changed files with 20 additions and 23 deletions
8
.SRCINFO
8
.SRCINFO
|
@ -1,14 +1,12 @@
|
|||
pkgbase = wxedid
|
||||
pkgdesc = wxWidgets-based EDID (Extended Display Identification Data) editor
|
||||
pkgver = 0.0.29
|
||||
pkgver = 0.0.31
|
||||
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
|
||||
source = https://downloads.sourceforge.net/wxedid/wxedid-0.0.31.tar.gz
|
||||
sha512sums = 9e83ce46912ef1a43bccfa4e4086697cfec444ef932040e618210d682a6fa4a40bf78aece953e10a959ae7a38671b5782a0a4562cd776f71b5784c3bd1fcda5d
|
||||
|
||||
pkgname = wxedid
|
||||
|
|
35
PKGBUILD
35
PKGBUILD
|
@ -1,31 +1,30 @@
|
|||
# Maintainer: Jonathan Liu <net147@gmail.com>
|
||||
# Maintainer: Manuel Hüsers <aur@huesers.de>
|
||||
# Contributor: Jonathan Liu <net147@gmail.com>
|
||||
|
||||
pkgname=wxedid
|
||||
pkgver=0.0.29
|
||||
pkgver=0.0.31
|
||||
pkgrel=1
|
||||
pkgdesc="wxWidgets-based EDID (Extended Display Identification Data) editor"
|
||||
arch=('i686' 'x86_64')
|
||||
url="https://sourceforge.net/projects/wxedid/"
|
||||
pkgdesc='wxWidgets-based EDID (Extended Display Identification Data) editor'
|
||||
arch=('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')
|
||||
source=("https://downloads.sourceforge.net/${pkgname}/${pkgname}-${pkgver}.tar.gz")
|
||||
sha512sums=('9e83ce46912ef1a43bccfa4e4086697cfec444ef932040e618210d682a6fa4a40bf78aece953e10a959ae7a38671b5782a0a4562cd776f71b5784c3bd1fcda5d')
|
||||
|
||||
build() {
|
||||
cd "$pkgname-$pkgver"
|
||||
autoreconf -f -i
|
||||
./configure --prefix=/usr
|
||||
make
|
||||
cd "${pkgname}-${pkgver}"
|
||||
autoreconf -f -i
|
||||
./configure --prefix=/usr
|
||||
make
|
||||
}
|
||||
|
||||
check() {
|
||||
cd "$pkgname-$pkgver"
|
||||
make -k check
|
||||
cd "${pkgname}-${pkgver}"
|
||||
make -k check
|
||||
}
|
||||
|
||||
package() {
|
||||
cd "$pkgname-$pkgver"
|
||||
make DESTDIR="$pkgdir" install
|
||||
cd "${pkgname}-${pkgver}"
|
||||
make DESTDIR="$pkgdir" install
|
||||
}
|
||||
|
||||
# vim:set ts=2 sw=2 et:
|
||||
|
|
Loading…
Reference in a new issue