Compare commits

...

1 Commits

Author SHA1 Message Date
Manuel 4f6429b2fa upgpkg: wxedid 0.0.31-1
upstream release
2024-04-11 19:45:27 +02:00
2 changed files with 20 additions and 23 deletions

View File

@ -1,14 +1,12 @@
pkgbase = wxedid pkgbase = wxedid
pkgdesc = wxWidgets-based EDID (Extended Display Identification Data) editor pkgdesc = wxWidgets-based EDID (Extended Display Identification Data) editor
pkgver = 0.0.29 pkgver = 0.0.31
pkgrel = 1 pkgrel = 1
url = https://sourceforge.net/projects/wxedid/ url = https://sourceforge.net/projects/wxedid/
arch = i686
arch = x86_64 arch = x86_64
license = GPL3 license = GPL3
depends = wxwidgets-gtk3 depends = wxwidgets-gtk3
options = !buildflags source = https://downloads.sourceforge.net/wxedid/wxedid-0.0.31.tar.gz
source = https://downloads.sourceforge.net/wxedid/wxedid-0.0.29.tar.gz sha512sums = 9e83ce46912ef1a43bccfa4e4086697cfec444ef932040e618210d682a6fa4a40bf78aece953e10a959ae7a38671b5782a0a4562cd776f71b5784c3bd1fcda5d
md5sums = 3fc9e1814ae990752defbd48a14670ec
pkgname = wxedid pkgname = wxedid

View File

@ -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 pkgname=wxedid
pkgver=0.0.29 pkgver=0.0.31
pkgrel=1 pkgrel=1
pkgdesc="wxWidgets-based EDID (Extended Display Identification Data) editor" pkgdesc='wxWidgets-based EDID (Extended Display Identification Data) editor'
arch=('i686' 'x86_64') arch=('x86_64')
url="https://sourceforge.net/projects/wxedid/" url='https://sourceforge.net/projects/wxedid/'
license=('GPL3') license=('GPL3')
depends=('wxwidgets-gtk3') depends=('wxwidgets-gtk3')
options=('!buildflags') source=("https://downloads.sourceforge.net/${pkgname}/${pkgname}-${pkgver}.tar.gz")
source=("https://downloads.sourceforge.net/$pkgname/$pkgname-$pkgver.tar.gz") sha512sums=('9e83ce46912ef1a43bccfa4e4086697cfec444ef932040e618210d682a6fa4a40bf78aece953e10a959ae7a38671b5782a0a4562cd776f71b5784c3bd1fcda5d')
md5sums=('3fc9e1814ae990752defbd48a14670ec')
build() { build() {
cd "$pkgname-$pkgver" cd "${pkgname}-${pkgver}"
autoreconf -f -i autoreconf -f -i
./configure --prefix=/usr ./configure --prefix=/usr
make make
} }
check() { check() {
cd "$pkgname-$pkgver" cd "${pkgname}-${pkgver}"
make -k check make -k check
} }
package() { package() {
cd "$pkgname-$pkgver" cd "${pkgname}-${pkgver}"
make DESTDIR="$pkgdir" install make DESTDIR="$pkgdir" install
} }
# vim:set ts=2 sw=2 et: