gnuplot: simplify parameter expansion in the Pkgfile

This commit is contained in:
John McQuah 2022-08-18 07:21:51 -04:00
parent def5d187cc
commit 6fd48afd54
6 changed files with 4 additions and 34 deletions

4
REPO
View File

@ -41,7 +41,6 @@ d:mblaze
d:dreamchess
d:opusfile
d:python3-dbfread
d:kristall
d:prboom-plus
d:greetd
d:python3-openpyxl
@ -211,9 +210,6 @@ f:13b4a1aeaf701fb6f6c08817803eddcd:opusfile/.footprint
f:7570b44e87f3869fc3274f513a21d992:python3-dbfread/.signature
f:3479e2d1ccf4a4c69ca2c71ddbe85a88:python3-dbfread/Pkgfile
f:e34f33eff018b57c826b1e3eedfa54e8:python3-dbfread/.footprint
f:19bcdc59b15c67cc005f7bde07f61e78:kristall/.signature
f:442e457b5490f47aba1a70e122d9bd7b:kristall/Pkgfile
f:0478c670de19dbcd56e8bc8ea263c374:kristall/.footprint
f:91372316c4b2290c645c95fd7d66cdbc:prboom-plus/.signature
f:9bc9c37becdaf8b8c3e130fe8fe77db4:prboom-plus/Pkgfile
f:df7dc18d4185794d220557bdd87195f1:prboom-plus/.footprint

View File

@ -1,5 +1,5 @@
untrusted comment: verify with /etc/ports/jmq.pub
RWTTPlFarK9CxBdicaWIY8N2a690o9czzw0mm391s9jOJJ9NyxxOtLg0cn9Q9IF0en/ud68bboaqq46nhl0Y3wQoexxbp/5XGAY=
SHA256 (Pkgfile) = 7778c2b76ce09a4ecb6c8e8ee3281605f94e796317a52106e1869db5abb51ac8
RWTTPlFarK9CxEAfpTajQG0fTmGeLfbYhFANvKNe0/NQd7bgVMWi7+7FWwyqTqv25UYcEsf64IRz5FCm8HS3VzW92Phy6WEBTAw=
SHA256 (Pkgfile) = b37c829f611d26edcfea3b6c51244e4f0fdbb2a83a4a70105109a315c2ab9ced
SHA256 (.footprint) = df8e9f603cd924de26be4578a8762ebc605db9d394157caf6905db7e3b70f0d2
SHA256 (gnuplot-5.4.3.tar.gz) = 51f89bbab90f96d3543f95235368d188eb1e26eda296912256abcd3535bd4d84

View File

@ -6,10 +6,10 @@
name=gnuplot-qt5
version=5.4.3
release=1
source=(https://downloads.sourceforge.net/project/${name:0:7}/${name:0:7}/$version/${name:0:7}-$version.tar.gz)
source=(https://downloads.sourceforge.net/project/${name%-*}/${name%-*}/$version/${name%-*}-$version.tar.gz)
build() {
cd ${name:0:7}-$version
cd ${name%-*}-$version
./configure \
--prefix=/usr \
--libexecdir=/usr/lib \

View File

@ -1,3 +0,0 @@
drwxr-xr-x root/root usr/
drwxr-xr-x root/root usr/bin/
-rwxr-xr-x root/root usr/bin/kristall

View File

@ -1,5 +0,0 @@
untrusted comment: verify with /etc/ports/jmq.pub
RWTTPlFarK9CxPh8roWF4n31uIWB/0lucmMdy/uGU4TjGyzWzMrihWS1sVVO1vBFFws8DrIH0bJglnU2rbu7ny2ONhSkYbQqoAM=
SHA256 (Pkgfile) = 97dfd811dc2cff804bafbf62142538aa985ebe02e748bd68b036651adc8b8861
SHA256 (.footprint) = 3b36f453460bd5cdf6d04e86d9e6822a8397265c1753870e63c44079b8532baa
SHA256 (kristall-0.3.tar.gz) = 24733402e0e3924459222c87aa2137139ff8ae10410a2a88d56455c5ec172368

View File

@ -1,18 +0,0 @@
# Description: graphical gemini browser using Qt5
# URL: https://github.com/MasterQ32/kristall
# Maintainer: John McQuah, jmcquah at disroot dot org
# Depends on: qt5
name=kristall
version=0.3
release=1
source=(https://github.com/MasterQ32/$name/archive/V$version/$name-$version.tar.gz)
build() {
cd $name-$version
mkdir build && cd build
qmake ../src/kristall.pro
make PREFIX=/usr
mkdir -p $PKG/usr/bin
install -m 0755 $name $PKG/usr/bin
}