Add 'florence/' from commit '890c618a180078ac1dece535215bc4b99e8d753f'
git-subtree-dir: florence git-subtree-mainline:4ea6300b8a
git-subtree-split:890c618a18
This commit is contained in:
commit
ae5638f530
3 changed files with 73 additions and 0 deletions
21
florence/.SRCINFO
Normal file
21
florence/.SRCINFO
Normal file
|
@ -0,0 +1,21 @@
|
||||||
|
pkgbase = florence
|
||||||
|
pkgdesc = A configurable on-screen virtual keyboard
|
||||||
|
pkgver = 0.6.3
|
||||||
|
pkgrel = 2
|
||||||
|
url = http://sourceforge.net/projects/florence/
|
||||||
|
install = florence.install
|
||||||
|
arch = i686
|
||||||
|
arch = x86_64
|
||||||
|
license = GPL
|
||||||
|
makedepends = intltool>=0.23
|
||||||
|
makedepends = gnome-doc-utils
|
||||||
|
depends = gtk3
|
||||||
|
depends = libxml2
|
||||||
|
depends = librsvg
|
||||||
|
depends = libxtst
|
||||||
|
depends = gettext
|
||||||
|
depends = gstreamer>=1.0
|
||||||
|
source = http://sourceforge.net/projects/florence/files/florence/0.6.3/florence-0.6.3.tar.bz2
|
||||||
|
sha256sums = 422992fd07d285be73cce721a203e22cee21320d69b0fda1579ce62944c5091e
|
||||||
|
|
||||||
|
pkgname = florence
|
36
florence/PKGBUILD
Normal file
36
florence/PKGBUILD
Normal file
|
@ -0,0 +1,36 @@
|
||||||
|
# Maintainer: Manuel Hüsers <aur@huesers.de>
|
||||||
|
# Contributor: UshakovVasilii <UshakovVasilii@yahoo.com>
|
||||||
|
# Contributor: Charon77 <evans.jahja@yahoo.com>
|
||||||
|
# Contributor: debdj <debd92@gmail.com>
|
||||||
|
|
||||||
|
pkgname=florence
|
||||||
|
pkgver=0.6.3
|
||||||
|
pkgrel=2
|
||||||
|
pkgdesc='A configurable on-screen virtual keyboard'
|
||||||
|
arch=('i686' 'x86_64')
|
||||||
|
url="http://sourceforge.net/projects/${pkgname}/"
|
||||||
|
license=('GPL')
|
||||||
|
depends=('gtk3' 'libxml2' 'librsvg' 'libxtst' 'gettext' 'gstreamer>=1.0') # http://florence.sourceforge.net/english/install.html
|
||||||
|
makedepends=('intltool>=0.23' 'gnome-doc-utils')
|
||||||
|
install="${pkgname}.install"
|
||||||
|
source=("http://sourceforge.net/projects/${pkgname}/files/${pkgname}/${pkgver}/${pkgname}-${pkgver}.tar.bz2")
|
||||||
|
sha256sums=('422992fd07d285be73cce721a203e22cee21320d69b0fda1579ce62944c5091e')
|
||||||
|
|
||||||
|
build() {
|
||||||
|
cd "${srcdir}/${pkgname}-${pkgver}"
|
||||||
|
|
||||||
|
./configure --prefix=/usr \
|
||||||
|
--without-notification \
|
||||||
|
--without-at-spi \
|
||||||
|
--with-panelapplet \
|
||||||
|
--with-xtst \
|
||||||
|
--with-docs \
|
||||||
|
--disable-static
|
||||||
|
make -j1
|
||||||
|
}
|
||||||
|
|
||||||
|
package() {
|
||||||
|
cd "${srcdir}/${pkgname}-${pkgver}"
|
||||||
|
|
||||||
|
make -j1 DESTDIR="${pkgdir}" install
|
||||||
|
}
|
16
florence/florence.install
Normal file
16
florence/florence.install
Normal file
|
@ -0,0 +1,16 @@
|
||||||
|
_update() {
|
||||||
|
glib-compile-schemas '/usr/share/glib-2.0/schemas/'
|
||||||
|
update-desktop-database -q
|
||||||
|
}
|
||||||
|
|
||||||
|
post_install() {
|
||||||
|
_update
|
||||||
|
}
|
||||||
|
|
||||||
|
post_upgrade() {
|
||||||
|
_update
|
||||||
|
}
|
||||||
|
|
||||||
|
post_remove() {
|
||||||
|
_update
|
||||||
|
}
|
Loading…
Reference in a new issue