summarylogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--.SRCINFO6
-rw-r--r--PKGBUILD7
2 files changed, 7 insertions, 6 deletions
diff --git a/.SRCINFO b/.SRCINFO
index 552949c093b6..6031140facfb 100644
--- a/.SRCINFO
+++ b/.SRCINFO
@@ -1,6 +1,6 @@
pkgbase = f3d-bin
pkgdesc = A fast and minimalist 3D viewer
- pkgver = 1.1.0
+ pkgver = 1.2.0
pkgrel = 1
epoch = 1
url = https://github.com/f3d-app/f3d
@@ -8,7 +8,7 @@ pkgbase = f3d-bin
license = BSD
provides = f3d
conflicts = f3d
- source = https://github.com/f3d-app/f3d/releases/download/v1.1.0/f3d-1.1.0-Linux.tar.xz
- sha256sums = 8a0968437463a1713e16be16216fe30fea5a34ae1546de6ceb5187effd96dbc1
+ source = https://github.com/f3d-app/f3d/releases/download/v1.2.0/f3d-1.2.0-Linux.tar.xz
+ sha256sums = b062143fefb37de78aabf935fe0331c6b7a5558e71c69a814da772e6c14afbe7
pkgname = f3d-bin
diff --git a/PKGBUILD b/PKGBUILD
index 79988cdfd4db..fe3445148feb 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -2,7 +2,7 @@
_pkgname=f3d
_pkgown=f3d-app
pkgname=${_pkgname}-bin
-pkgver=1.1.0
+pkgver=1.2.0
pkgrel=1
epoch=1
pkgdesc='A fast and minimalist 3D viewer'
@@ -12,10 +12,11 @@ license=('BSD')
provides=('f3d')
conflicts=('f3d')
source=("$url/releases/download/v$pkgver/$_pkgname-$pkgver-Linux.tar.xz")
-sha256sums=('8a0968437463a1713e16be16216fe30fea5a34ae1546de6ceb5187effd96dbc1')
+sha256sums=('b062143fefb37de78aabf935fe0331c6b7a5558e71c69a814da772e6c14afbe7')
package() {
- cd "$_pkgname-$pkgver-Linux"
+ cd "$_pkgname-$pkgver-Linux"
install -Dm755 "./bin/${_pkgname}" "${pkgdir}/usr/bin/${_pkgname}"
+ install -Dm755 "./lib/libf3d.so" "${pkgdir}/usr/lib/libf3d.so"
cp -r "./share" "${pkgdir}/usr/share/"
}