arch-packages/florence/PKGBUILD

37 lines
1.1 KiB
Bash
Raw Normal View History

2022-02-13 15:15:11 +01:00
# Maintainer: Manuel Hüsers <aur@huesers.de>
# Contributor: UshakovVasilii <UshakovVasilii@yahoo.com>
2015-07-13 00:08:58 +02:00
# Contributor: Charon77 <evans.jahja@yahoo.com>
# Contributor: debdj <debd92@gmail.com>
pkgname=florence
pkgver=0.6.3
pkgrel=3
2016-02-01 00:30:26 +01:00
pkgdesc='A configurable on-screen virtual keyboard'
2015-07-13 00:08:58 +02:00
arch=('i686' 'x86_64')
2016-02-01 00:30:26 +01:00
url="http://sourceforge.net/projects/${pkgname}/"
2015-07-13 00:08:58 +02:00
license=('GPL')
depends=('gtk3' 'libxml2' 'librsvg' 'libxtst' 'gettext' 'gstreamer>=1.0') # http://florence.sourceforge.net/english/install.html
makedepends=('intltool>=0.23')
2016-02-01 00:30:26 +01:00
source=("http://sourceforge.net/projects/${pkgname}/files/${pkgname}/${pkgver}/${pkgname}-${pkgver}.tar.bz2")
2024-04-08 23:10:35 +02:00
sha512sums=('c527e8c40c9a594106420a6187945d79dfa7ddb4f628805cd188c8a37f79f42cbc1f74b80e21186f104a79c4d5e90c7a9d93cbe35bf1c6ebfe874db047fbef3c')
2015-07-13 00:08:58 +02:00
build() {
cd "${srcdir}/${pkgname}-${pkgver}"
2015-07-13 00:08:58 +02:00
./configure --prefix=/usr \
--without-notification \
--without-at-spi \
--with-panelapplet \
--with-xtst \
--with-docs \
--disable-static \
--without-docs
make -j1
2015-07-13 00:08:58 +02:00
}
package() {
cd "${srcdir}/${pkgname}-${pkgver}"
2016-02-01 00:30:26 +01:00
make -j1 DESTDIR="${pkgdir}" install
2015-07-13 00:08:58 +02:00
}