Initial import
This commit is contained in:
commit
afe00038be
3 changed files with 89 additions and 0 deletions
20
.AURINFO
Normal file
20
.AURINFO
Normal file
|
@ -0,0 +1,20 @@
|
||||||
|
pkgbase = florence
|
||||||
|
pkgdesc = A configurable on-screen virtual keyboard
|
||||||
|
pkgver = 0.6.3
|
||||||
|
pkgrel = 1
|
||||||
|
url = http://sourceforge.net/projects/florence/
|
||||||
|
arch = i686
|
||||||
|
arch = x86_64
|
||||||
|
license = GPL
|
||||||
|
makedepends = intltool>=0.23
|
||||||
|
depends = gtk3
|
||||||
|
depends = libxml2
|
||||||
|
depends = librsvg
|
||||||
|
depends = gettext
|
||||||
|
depends = gstreamer>=1.0
|
||||||
|
provides = florence
|
||||||
|
source = http://sourceforge.net/projects/florence/files/florence/0.6.3/florence-0.6.3.tar.bz2
|
||||||
|
md5sums = 8775051d7352f75dec5a86dc9964e8e0
|
||||||
|
|
||||||
|
pkgname = florence
|
||||||
|
|
20
.SRCINFO
Normal file
20
.SRCINFO
Normal file
|
@ -0,0 +1,20 @@
|
||||||
|
pkgbase = florence
|
||||||
|
pkgdesc = A configurable on-screen virtual keyboard
|
||||||
|
pkgver = 0.6.3
|
||||||
|
pkgrel = 1
|
||||||
|
url = http://sourceforge.net/projects/florence/
|
||||||
|
arch = i686
|
||||||
|
arch = x86_64
|
||||||
|
license = GPL
|
||||||
|
makedepends = intltool>=0.23
|
||||||
|
depends = gtk3
|
||||||
|
depends = libxml2
|
||||||
|
depends = librsvg
|
||||||
|
depends = gettext
|
||||||
|
depends = gstreamer>=1.0
|
||||||
|
provides = florence
|
||||||
|
source = http://sourceforge.net/projects/florence/files/florence/0.6.3/florence-0.6.3.tar.bz2
|
||||||
|
md5sums = 8775051d7352f75dec5a86dc9964e8e0
|
||||||
|
|
||||||
|
pkgname = florence
|
||||||
|
|
49
PKGBUILD
Normal file
49
PKGBUILD
Normal file
|
@ -0,0 +1,49 @@
|
||||||
|
# Maintainer: UshakovVasilii <UshakovVasilii@yahoo.com>
|
||||||
|
# Contributor: Charon77 <evans.jahja@yahoo.com>
|
||||||
|
# Contributor: debdj <debd92@gmail.com>
|
||||||
|
|
||||||
|
pkgname=florence
|
||||||
|
pkgver=0.6.3
|
||||||
|
pkgrel=1
|
||||||
|
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')
|
||||||
|
|
||||||
|
build() {
|
||||||
|
cd "${srcdir}/${pkgname}-${pkgver}"
|
||||||
|
|
||||||
|
./configure --prefix=/usr \
|
||||||
|
--without-docs \
|
||||||
|
--without-notification
|
||||||
|
|
||||||
|
make || return 1
|
||||||
|
}
|
||||||
|
|
||||||
|
package() {
|
||||||
|
cd "${srcdir}/${pkgname}-${pkgver}"
|
||||||
|
make DESTDIR=${pkgdir} install || return 1
|
||||||
|
}
|
||||||
|
|
Loading…
Reference in a new issue