mirror of
https://github.com/archlinux/aur.git
synced 2026-03-05 05:42:21 +01:00
Initial commit for libgxim.
This commit is contained in:
commit
296ad18c75
2 changed files with 47 additions and 0 deletions
19
.SRCINFO
Normal file
19
.SRCINFO
Normal file
|
|
@ -0,0 +1,19 @@
|
|||
# Generated by makepkg 4.2.0
|
||||
# Tue Dec 30 19:04:35 UTC 2014
|
||||
pkgbase = libgxim
|
||||
pkgdesc = GObject-based XIM protocol library
|
||||
pkgver = 0.5.0
|
||||
pkgrel = 3
|
||||
url = http://tagoh.bitbucket.org/libgxim/
|
||||
arch = i686
|
||||
arch = x86_64
|
||||
license = LGPL2
|
||||
makedepends = check
|
||||
makedepends = ruby
|
||||
makedepends = intltool
|
||||
depends = gtk2
|
||||
source = https://bitbucket.org/tagoh/libgxim/downloads/libgxim-0.5.0.tar.bz2
|
||||
sha256sums = 75e20d1744139644f9951b78ea3910b162d3380302315cb4b3d0640f23694c79
|
||||
|
||||
pkgname = libgxim
|
||||
|
||||
28
PKGBUILD
Normal file
28
PKGBUILD
Normal file
|
|
@ -0,0 +1,28 @@
|
|||
# Maintainer: Armin K. <krejzi at email dot com>
|
||||
|
||||
pkgname=libgxim
|
||||
pkgver=0.5.0
|
||||
pkgrel=3
|
||||
pkgdesc="GObject-based XIM protocol library"
|
||||
arch=('i686' 'x86_64')
|
||||
url="http://tagoh.bitbucket.org/libgxim/"
|
||||
license=('LGPL2')
|
||||
depends=('gtk2')
|
||||
makedepends=('check' 'ruby' 'intltool')
|
||||
source=("https://bitbucket.org/tagoh/${pkgname}/downloads/${pkgname}-${pkgver}.tar.bz2")
|
||||
sha256sums=('75e20d1744139644f9951b78ea3910b162d3380302315cb4b3d0640f23694c79')
|
||||
|
||||
build() {
|
||||
cd "${srcdir}/${pkgname}-${pkgver}"
|
||||
|
||||
./configure --prefix=/usr --disable-static
|
||||
make
|
||||
}
|
||||
|
||||
package() {
|
||||
cd "${srcdir}/${pkgname}-${pkgver}"
|
||||
|
||||
make install DESTDIR="${pkgdir}"
|
||||
|
||||
install -Dm644 COPYING "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
|
||||
}
|
||||
Loading…
Add table
Reference in a new issue