New release
Refactored PKGBUILD Added .install file Added doc support Removed static libraries
This commit is contained in:
parent
afe00038be
commit
98c50b0bb4
4 changed files with 42 additions and 55 deletions
51
PKGBUILD
51
PKGBUILD
|
@ -1,49 +1,36 @@
|
|||
# Maintainer: UshakovVasilii <UshakovVasilii@yahoo.com>
|
||||
# Maintainer: Manuel Hüsers <manuel.huesers@uni-ol.de>
|
||||
# Contributor: UshakovVasilii <UshakovVasilii@yahoo.com>
|
||||
# Contributor: Charon77 <evans.jahja@yahoo.com>
|
||||
# Contributor: debdj <debd92@gmail.com>
|
||||
|
||||
pkgname=florence
|
||||
pkgver=0.6.3
|
||||
pkgrel=1
|
||||
pkgrel=2
|
||||
pkgdesc="A configurable on-screen virtual keyboard"
|
||||
arch=('i686' 'x86_64')
|
||||
url="http://sourceforge.net/projects/florence/"
|
||||
license=('GPL')
|
||||
|
||||
# http://florence.sourceforge.net/english/install.html
|
||||
depends=(
|
||||
'gtk3'
|
||||
'libxml2'
|
||||
'librsvg'
|
||||
'gettext'
|
||||
'gstreamer>=1.0'
|
||||
)
|
||||
|
||||
makedepends=('intltool>=0.23')
|
||||
|
||||
# libxtst > at-spi2-core > gtk3
|
||||
#optdepends=(
|
||||
# 'gnome-doc-utils'
|
||||
# 'libnotify'
|
||||
# )
|
||||
|
||||
provides=(florence)
|
||||
source=("http://sourceforge.net/projects/florence/files/florence/$pkgver/florence-$pkgver.tar.bz2")
|
||||
|
||||
md5sums=('8775051d7352f75dec5a86dc9964e8e0')
|
||||
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/florence/files/florence/${pkgver}/florence-${pkgver}.tar.bz2")
|
||||
sha256sums=('422992fd07d285be73cce721a203e22cee21320d69b0fda1579ce62944c5091e')
|
||||
|
||||
build() {
|
||||
cd "${srcdir}/${pkgname}-${pkgver}"
|
||||
cd "${srcdir}/${pkgname}-${pkgver}"
|
||||
|
||||
./configure --prefix=/usr \
|
||||
--without-docs \
|
||||
--without-notification
|
||||
./configure --prefix=/usr \
|
||||
--without-notification \
|
||||
--without-at-spi \
|
||||
--with-panelapplet \
|
||||
--with-xtst \
|
||||
--with-docs \
|
||||
--disable-static
|
||||
|
||||
make || return 1
|
||||
make
|
||||
}
|
||||
|
||||
package() {
|
||||
cd "${srcdir}/${pkgname}-${pkgver}"
|
||||
make DESTDIR=${pkgdir} install || return 1
|
||||
cd "${srcdir}/${pkgname}-${pkgver}"
|
||||
make DESTDIR="${pkgdir}" install
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue