summaryrefslogtreecommitdiff
path: root/community/ktechlab
diff options
context:
space:
mode:
authorroot <root@rshg054.dnsready.net>2013-07-19 01:10:32 -0700
committerroot <root@rshg054.dnsready.net>2013-07-19 01:10:32 -0700
commit8fbc0076a4827ddc6af92e0b9daa4c4c31450808 (patch)
tree03fd0e2921ebd53228d9a93e32ed3976b636cbea /community/ktechlab
parente445a313723389ba9ee1fded025c567dae5b21ea (diff)
Fri Jul 19 01:09:18 PDT 2013
Diffstat (limited to 'community/ktechlab')
-rw-r--r--community/ktechlab/PKGBUILD30
1 files changed, 30 insertions, 0 deletions
diff --git a/community/ktechlab/PKGBUILD b/community/ktechlab/PKGBUILD
new file mode 100644
index 000000000..ac59910d6
--- /dev/null
+++ b/community/ktechlab/PKGBUILD
@@ -0,0 +1,30 @@
+# $Id: PKGBUILD 58604 2011-11-16 15:28:16Z spupykin $
+# Maintainer: JJDaNiMoTh <jjdanimoth.aur@gmail.com>
+
+pkgname=ktechlab
+pkgver=0.3.7
+pkgrel=3
+pkgdesc="IDE for electronic circuits and microcontrollers"
+arch=('i686' 'x86_64')
+url="http://sourceforge.net/projects/ktechlab"
+license=("GPL")
+depends=('kdelibs3' 'gputils' 'gpsim')
+source=("http://downloads.sourceforge.net/${pkgname}/${pkgname}-${pkgver}.tar.bz2"
+ "$pkgname-gcc45.patch::http://patch-tracker.debian.org/patch/series/dl/ktechlab/0.3.7-10/40-gcc-4.5.patch")
+md5sums=('8e778ef8ce6d0dd4539f5532c933f6bf'
+ '126a04255a8288a7ee42fe47a81c0079')
+
+build() {
+ . /etc/profile.d/qt3.sh
+ cd "${srcdir}/${pkgname}-$pkgver"
+ patch -p1 <$srcdir/$pkgname-gcc45.patch
+ ./configure --prefix=/opt/kde \
+ --disable-debug \
+ --without-arts
+ make
+}
+
+package() {
+ cd "${srcdir}/${pkgname}-$pkgver"
+ make DESTDIR="${pkgdir}" install
+}