summarylogtreecommitdiffstats
diff options
context:
space:
mode:
authorSzymon Scholz2018-12-28 04:56:16 +0100
committerSzymon Scholz2018-12-28 04:56:16 +0100
commit9839c9e370c25f88f6009c8444e841084da3a446 (patch)
tree37b86146559dcef78f57d161e11749a771655949
parent35297256e703ae92e69c33ad66466565f924fade (diff)
downloadaur-9839c9e370c25f88f6009c8444e841084da3a446.tar.gz
upgraded to 0.4.2
-rw-r--r--.SRCINFO7
-rw-r--r--PKGBUILD18
2 files changed, 15 insertions, 10 deletions
diff --git a/.SRCINFO b/.SRCINFO
index 61fc6f5d57c5..a94fb4000cc2 100644
--- a/.SRCINFO
+++ b/.SRCINFO
@@ -1,12 +1,13 @@
pkgbase = openwince-include
pkgdesc = A collection of the useful independent include files for C/Assembler developers, from the OpenWinCE project
- pkgver = 0.3.2
+ pkgver = 0.4.2
pkgrel = 1
url = http://openwince.sourceforge.net/jtag/
arch = i686
+ arch = x86_64
license = BSD
- source = http://downloads.sourceforge.net/openwince/include-0.3.2.tar.bz2
- md5sums = 2e9c1ae3b9ddc81e52a0f624193ceb64
+ source = https://archive.org/download/include-0.4.2.tar/include-0.4.2.tar.bz2
+ md5sums = e564c941363c958a7cd953ad97c1faa4
pkgname = openwince-include
diff --git a/PKGBUILD b/PKGBUILD
index bc1f9f6b6cb6..552abb329a2d 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -1,19 +1,23 @@
+# Maintainer: Szymon Scholz
# Contributor: Olivier Mehani <olivier.mehani@inria.fr>
pkgname=openwince-include
-pkgver=0.3.2
+pkgver=0.4.2
pkgrel=1
pkgdesc="A collection of the useful independent include files for C/Assembler developers, from the OpenWinCE project"
url="http://openwince.sourceforge.net/jtag/"
-source=(http://downloads.sourceforge.net/openwince/include-${pkgver}.tar.bz2)
-md5sums=('2e9c1ae3b9ddc81e52a0f624193ceb64')
-# for 0.4.2 md5sums=('e564c941363c958a7cd953ad97c1faa4')
-arch=('i686')
+source=(https://archive.org/download/include-${pkgver}.tar/include-${pkgver}.tar.bz2)
+arch=('i686' 'x86_64')
license=('BSD')
build() {
- cd $startdir/src/include-$pkgver
+ cd ${srcdir}/include-$pkgver
./configure --prefix=/usr || exit 1
make || exit 2
- make DESTDIR=$startdir/pkg install || exit 3
}
+
+package() {
+ cd ${srcdir}/include-$pkgver
+ make DESTDIR=${pkgdir} install || exit 3
+}
+md5sums=('e564c941363c958a7cd953ad97c1faa4')