added libqalculate qalculate-gtk
This commit is contained in:
parent
918ec6a512
commit
4eb2ea6b53
10 changed files with 138 additions and 0 deletions
34
libqalculate/PKGBUILD
Normal file
34
libqalculate/PKGBUILD
Normal file
|
@ -0,0 +1,34 @@
|
|||
#!/usr/bin/bash
|
||||
# JOBoRun : Jwm OpenBox Obarun RUNit
|
||||
# Maintainer : Joe Bo Run <joborun@disroot.org>
|
||||
# PkgSource : url="https://gittea.disroot.org/joborun-pkg/jobextra/$pkgname"
|
||||
# Website : https://pozol.eu
|
||||
#-----------------------------------------| DESCRIPTION |---------------------------------------
|
||||
|
||||
pkgname=libqalculate
|
||||
pkgver=4.1.0
|
||||
pkgrel=01
|
||||
pkgdesc='Multi-purpose desktop calculator'
|
||||
arch=(x86_64)
|
||||
url='https://qalculate.github.io/'
|
||||
depends=(libxml2 curl mpfr)
|
||||
makedepends=(intltool doxygen)
|
||||
optdepends=('gnuplot: for plotting support')
|
||||
source=(https://github.com/Qalculate/libqalculate/releases/download/v$pkgver/$pkgname-$pkgver.tar.gz)
|
||||
|
||||
build() {
|
||||
cd $pkgname-$pkgver
|
||||
./configure --prefix=/usr
|
||||
make
|
||||
}
|
||||
|
||||
package() {
|
||||
cd $pkgname-$pkgver
|
||||
make DESTDIR="$pkgdir" install
|
||||
}
|
||||
|
||||
#---- license gpg-key sha256sums ----
|
||||
|
||||
license=(GPL)
|
||||
|
||||
sha256sums=(d943e5285bdc0b3cd77b8f7a10391d7c753fc19b0ddd48e5d4179decf709d6ff) # libqalculate-4.1.0.tar.gz
|
26
libqalculate/PKGBUILD-arch
Normal file
26
libqalculate/PKGBUILD-arch
Normal file
|
@ -0,0 +1,26 @@
|
|||
# Maintainer: Eric Bélanger <eric@archlinux.org>
|
||||
# Maintainer: Antonio Rojas <arojas@archlinux.org>
|
||||
|
||||
pkgname=libqalculate
|
||||
pkgver=4.1.0
|
||||
pkgrel=1
|
||||
pkgdesc='Multi-purpose desktop calculator'
|
||||
arch=(x86_64)
|
||||
url='https://qalculate.github.io/'
|
||||
license=(GPL)
|
||||
depends=(libxml2 curl mpfr)
|
||||
makedepends=(intltool doxygen)
|
||||
optdepends=('gnuplot: for plotting support')
|
||||
source=(https://github.com/Qalculate/libqalculate/releases/download/v$pkgver/$pkgname-$pkgver.tar.gz)
|
||||
sha256sums=('d943e5285bdc0b3cd77b8f7a10391d7c753fc19b0ddd48e5d4179decf709d6ff')
|
||||
|
||||
build() {
|
||||
cd $pkgname-$pkgver
|
||||
./configure --prefix=/usr
|
||||
make
|
||||
}
|
||||
|
||||
package() {
|
||||
cd $pkgname-$pkgver
|
||||
make DESTDIR="$pkgdir" install
|
||||
}
|
1
libqalculate/clean
Normal file
1
libqalculate/clean
Normal file
|
@ -0,0 +1 @@
|
|||
rm -rf {src,pkg,libq*.tar.gz}
|
4
libqalculate/deps
Normal file
4
libqalculate/deps
Normal file
|
@ -0,0 +1,4 @@
|
|||
libxml2
|
||||
intltool
|
||||
doxygen
|
||||
gettext
|
4
libqalculate/time
Normal file
4
libqalculate/time
Normal file
|
@ -0,0 +1,4 @@
|
|||
|
||||
real 4m39.695s
|
||||
user 11m20.656s
|
||||
sys 0m14.808s
|
33
qalculate-gtk/PKGBUILD
Normal file
33
qalculate-gtk/PKGBUILD
Normal file
|
@ -0,0 +1,33 @@
|
|||
#!/usr/bin/bash
|
||||
# JOBoRun : Jwm OpenBox Obarun RUNit
|
||||
# Maintainer : Joe Bo Run <joborun@disroot.org>
|
||||
# PkgSource : url="https://gittea.disroot.org/joborun-pkg/jobextra/$pkgname"
|
||||
# Website : https://pozol.eu
|
||||
#-----------------------------------------| DESCRIPTION |---------------------------------------
|
||||
|
||||
pkgname=qalculate-gtk
|
||||
pkgver=4.1.0
|
||||
pkgrel=01
|
||||
pkgdesc='GTK frontend for libqalculate'
|
||||
arch=(x86_64)
|
||||
url='https://qalculate.github.io/'
|
||||
depends=(libqalculate gtk3)
|
||||
makedepends=(intltool python)
|
||||
source=(https://github.com/Qalculate/qalculate-gtk/releases/download/v$pkgver/$pkgname-$pkgver.tar.gz)
|
||||
|
||||
build() {
|
||||
cd $pkgname-$pkgver
|
||||
./configure --prefix=/usr --libexecdir=/usr/lib
|
||||
make
|
||||
}
|
||||
|
||||
package() {
|
||||
cd $pkgname-$pkgver
|
||||
make DESTDIR="$pkgdir" install
|
||||
}
|
||||
|
||||
#---- license gpg-key sha256sums ----
|
||||
|
||||
license=(GPL)
|
||||
|
||||
sha256sums=(8bab126f4f87e9321572f10e9262bf095c7e72470d4b61e2a173d273673bdeca) # qalculate-gtk-4.1.0.tar.gz
|
25
qalculate-gtk/PKGBUILD-arch
Normal file
25
qalculate-gtk/PKGBUILD-arch
Normal file
|
@ -0,0 +1,25 @@
|
|||
# Maintainer: Antonio Rojas <arojas@archlinux.org>
|
||||
# Contributor: Eric Bélanger <eric@archlinux.org>
|
||||
|
||||
pkgname=qalculate-gtk
|
||||
pkgver=4.1.0
|
||||
pkgrel=1
|
||||
pkgdesc='GTK frontend for libqalculate'
|
||||
arch=(x86_64)
|
||||
url='https://qalculate.github.io/'
|
||||
license=(GPL)
|
||||
depends=(libqalculate gtk3)
|
||||
makedepends=(intltool python)
|
||||
source=(https://github.com/Qalculate/qalculate-gtk/releases/download/v$pkgver/$pkgname-$pkgver.tar.gz)
|
||||
sha256sums=('8bab126f4f87e9321572f10e9262bf095c7e72470d4b61e2a173d273673bdeca')
|
||||
|
||||
build() {
|
||||
cd $pkgname-$pkgver
|
||||
./configure --prefix=/usr --libexecdir=/usr/lib
|
||||
make
|
||||
}
|
||||
|
||||
package() {
|
||||
cd $pkgname-$pkgver
|
||||
make DESTDIR="$pkgdir" install
|
||||
}
|
1
qalculate-gtk/clean
Normal file
1
qalculate-gtk/clean
Normal file
|
@ -0,0 +1 @@
|
|||
rm -rf {src,pkg,qalc*tar.gz}
|
5
qalculate-gtk/deps
Normal file
5
qalculate-gtk/deps
Normal file
|
@ -0,0 +1,5 @@
|
|||
gtk3
|
||||
libqalculate
|
||||
intltool
|
||||
python
|
||||
gettext
|
5
qalculate-gtk/time
Normal file
5
qalculate-gtk/time
Normal file
|
@ -0,0 +1,5 @@
|
|||
|
||||
real 0m59.293s
|
||||
user 1m14.106s
|
||||
sys 0m2.491s
|
||||
|
Loading…
Reference in a new issue