Compare commits

...

3 commits

Author SHA1 Message Date
d8bf0fa168 upgpkg: wxedid 0.0.32-1
upstream release
2024-12-02 09:02:46 +01:00
a93d6946fb Adopt SPDX identifiers for license fields 2024-07-21 07:32:40 +02:00
4f6429b2fa upgpkg: wxedid 0.0.31-1
upstream release
2024-04-11 19:45:27 +02:00
2 changed files with 22 additions and 25 deletions

View file

@ -1,14 +1,12 @@
pkgbase = wxedid
pkgdesc = wxWidgets-based EDID (Extended Display Identification Data) editor
pkgver = 0.0.29
pkgver = 0.0.32
pkgrel = 1
url = https://sourceforge.net/projects/wxedid/
arch = i686
arch = x86_64
license = GPL3
license = GPL-3.0-or-later
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.32.tar.gz
sha512sums = 46aaf8a9fb578ea2ed725aa6a60a33f359dc76701226695d1f8e5c252d1fa834dc972fbf1f8788e4045699115bf3e7143bc70bc9d2b6a9731e69e0f51dfb6376
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
pkgver=0.0.29
pkgver=0.0.32
pkgrel=1
pkgdesc="wxWidgets-based EDID (Extended Display Identification Data) editor"
arch=('i686' 'x86_64')
url="https://sourceforge.net/projects/wxedid/"
license=('GPL3')
pkgdesc='wxWidgets-based EDID (Extended Display Identification Data) editor'
arch=('x86_64')
url="https://sourceforge.net/projects/${pkgname}/"
license=('GPL-3.0-or-later')
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=('46aaf8a9fb578ea2ed725aa6a60a33f359dc76701226695d1f8e5c252d1fa834dc972fbf1f8788e4045699115bf3e7143bc70bc9d2b6a9731e69e0f51dfb6376')
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 check
}
package() {
cd "$pkgname-$pkgver"
make DESTDIR="$pkgdir" install
cd "${pkgname}-${pkgver}"
make DESTDIR="$pkgdir" install
}
# vim:set ts=2 sw=2 et: