mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2026-05-04 20:06:43 +02:00
testing/wxformbuilder: new aport
RAD tool for wxWidgets GUI design http://sourceforge.net/apps/wordpress/wxformbuilder
This commit is contained in:
parent
cef6611406
commit
5701f80cfd
41
testing/wxformbuilder/APKBUILD
Normal file
41
testing/wxformbuilder/APKBUILD
Normal file
@ -0,0 +1,41 @@
|
||||
# Contributor: Natanael Copa <ncopa@alpinelinux.org>
|
||||
# Maintainer: Natanael Copa <ncopa@alpinelinux.org>
|
||||
pkgname=wxformbuilder
|
||||
pkgver=3.0.57
|
||||
pkgrel=0
|
||||
pkgdesc="RAD tool for wxWidgets GUI design"
|
||||
url="http://sourceforge.net/apps/wordpress/wxformbuilder"
|
||||
arch="all"
|
||||
license="GPLv2"
|
||||
depends=""
|
||||
depends_dev=""
|
||||
makedepends="$depends_dev wxgtk-dev"
|
||||
install=""
|
||||
subpackages=""
|
||||
source="http://downloads.sourceforge.net/project/wxformbuilder/wxformbuilder-src/$pkgver/wxformbuilder-$pkgver.tar.gz
|
||||
libdl.patch"
|
||||
|
||||
_builddir="$srcdir"/wxformbuilder_$pkgver
|
||||
prepare() {
|
||||
local i
|
||||
cd "$_builddir"
|
||||
for i in $source; do
|
||||
case $i in
|
||||
*.patch) msg $i; patch -p1 -i "$srcdir"/$i || return 1;;
|
||||
esac
|
||||
done
|
||||
}
|
||||
|
||||
build() {
|
||||
cd "$_builddir"
|
||||
make CONFIG=Release || return 1
|
||||
}
|
||||
|
||||
package() {
|
||||
cd "$_builddir"
|
||||
mkdir -p "$pkgdir"/usr
|
||||
install/linux/wxfb_export.sh "$pkgdir"/usr || return 1
|
||||
}
|
||||
|
||||
md5sums="77dd368b2ec4ec5a583e1ab60c344a12 wxformbuilder-3.0.57.tar.gz
|
||||
a4917ec9c4afbb848a07e6a44f6c4924 libdl.patch"
|
||||
11
testing/wxformbuilder/libdl.patch
Normal file
11
testing/wxformbuilder/libdl.patch
Normal file
@ -0,0 +1,11 @@
|
||||
--- ./src/Makefile.orig
|
||||
+++ ./src/Makefile
|
||||
@@ -5,6 +5,8 @@
|
||||
CONFIG=Release
|
||||
endif
|
||||
|
||||
+LDFLAGS += -ldl
|
||||
+
|
||||
ifeq ($(CONFIG),Release)
|
||||
BINDIR := ../output/bin
|
||||
LIBDIR := ..
|
||||
Loading…
x
Reference in New Issue
Block a user