extra/io to 2017.09.06-10

This commit is contained in:
Kevin Mihelich 2024-03-12 12:49:04 +00:00
parent 9e84daa61d
commit 10b8ad6dc6
2 changed files with 38 additions and 4 deletions

34
extra/io/.SRCINFO Normal file
View file

@ -0,0 +1,34 @@
pkgbase = io
pkgdesc = IO programming language
pkgver = 2017.09.06
pkgrel = 10
url = https://iolanguage.org/
arch = x86_64
license = BSD
makedepends = cmake
makedepends = git
depends = freeglut
depends = freetype2
depends = libedit
depends = libevent
depends = libjpeg-turbo
depends = libpng
depends = libsndfile
depends = libtheora
depends = libtiff
depends = libxml2
depends = libxmu
depends = lzo
depends = mariadb-libs
depends = pcre2
depends = python
depends = sqlite
depends = util-linux
depends = yajl
options = !makeflags
source = git+https://github.com/stevedekorte/io#commit=b8a18fc199758ed09cd2f199a9bc821f6821072a
source = noexec.patch::https://github.com/IoLanguage/io/commit/5b88e9769c1d4629e9a4a01c78b57c0d80c7a70c.patch
b2sums = SKIP
b2sums = bf7bf212349a88d707ca99fff48dfc08b0b4fbdc91a64a090e53c388e161f210d42e1dff590c5cda022c0519f2469ad9be5d4788c226632ad3d516389782912d
pkgname = io

View file

@ -8,12 +8,12 @@
pkgname=io
pkgver=2017.09.06
pkgrel=9
pkgrel=10
pkgdesc='IO programming language'
arch=(x86_64)
url='https://iolanguage.org/'
license=(BSD)
depends=(freeglut freetype2 libedit libevent libjpeg-turbo libpng libsndfile libtheora libtiff libxml2 libxmu lzo mariadb-libs pcre python sqlite util-linux yajl)
depends=(freeglut freetype2 libedit libevent libjpeg-turbo libpng libsndfile libtheora libtiff libxml2 libxmu lzo mariadb-libs pcre2 python sqlite util-linux yajl)
makedepends=(cmake git)
options=(!makeflags)
source=("git+https://github.com/stevedekorte/io#commit=b8a18fc199758ed09cd2f199a9bc821f6821072a" # tag: 2017.09.06
@ -24,7 +24,7 @@ b2sums=('SKIP'
prepare() {
cd $pkgname/libs/iovm/source
sed -ri "s,20[0-9]+,$pkgver," IoVersion.h
sed -i 's,sys/sysctl.h,linux/sysctl.h,g' IoSystem.c
sed -i 's,sys/sys,linux/sys,' IoSystem.c
sed -i '/-msse2/d' $srcdir/$pkgname/CMakeLists.txt
}
@ -49,7 +49,7 @@ package() {
# Use the statically linked executable instead.
mv -f "$pkgdir/usr/bin/io_static" "$pkgdir/usr/bin/io"
# In the next version of io, it's just $pkgname/LICENSE.txt
# In the next release of io, it will just be "$pkgname/LICENSE.txt"
install -Dm644 $pkgname/license/bsd_license.txt \
"$pkgdir/usr/share/licenses/$pkgname/LICENSE"
}