mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-11-08 22:45:43 +00:00
added community/gnome-keyring-sharp
This commit is contained in:
parent
0efb73c5bb
commit
ea1de0da51
2 changed files with 1519 additions and 0 deletions
1484
community/gnome-keyring-sharp/02_gnome_2.30_compatibility.patch
Normal file
1484
community/gnome-keyring-sharp/02_gnome_2.30_compatibility.patch
Normal file
File diff suppressed because it is too large
Load diff
35
community/gnome-keyring-sharp/PKGBUILD
Normal file
35
community/gnome-keyring-sharp/PKGBUILD
Normal file
|
@ -0,0 +1,35 @@
|
|||
# $Id$
|
||||
# Maintainer: Balló György <ballogyor+arch at gmail dot com>
|
||||
# Contributor: Daniel Isenmann <daniel@archlinux.org>
|
||||
|
||||
# remove when bumped upstream
|
||||
|
||||
pkgname=gnome-keyring-sharp
|
||||
pkgver=1.0.2
|
||||
pkgrel=6
|
||||
pkgdesc="A fully managed implementation of libgnome-keyring"
|
||||
arch=('i686' 'x86_64')
|
||||
url="https://github.com/mono/gnome-keyring-sharp"
|
||||
license=('MIT')
|
||||
depends=('libgnome-keyring' 'gtk-sharp-2')
|
||||
source=(http://www.go-mono.com/archive/$pkgname/$pkgname-$pkgver.tar.gz)
|
||||
sha256sums=('043e3e22132bdfe34e8ca314b6fd34bb0bc55a23eeb102778c64c243bb595315')
|
||||
|
||||
prepare() {
|
||||
cd $pkgname-$pkgver
|
||||
sed -i '/AssemblyKeyFile/d' src/Gnome.Keyring/AssemblyInfo.cs.in
|
||||
sed -i '/GACUTIL/d' src/Makefile.{am,in}
|
||||
}
|
||||
|
||||
build() {
|
||||
cd $pkgname-$pkgver
|
||||
./configure --prefix=/usr --sysconfdir=/etc
|
||||
make
|
||||
}
|
||||
|
||||
package() {
|
||||
cd $pkgname-$pkgver
|
||||
make DESTDIR="$pkgdir" install
|
||||
install -Dm644 src/Gnome.Keyring.dll "$pkgdir/usr/lib/mono/gnome-keyring-sharp-1.0/Gnome.Keyring.dll"
|
||||
install -Dm644 COPYING "$pkgdir/usr/share/licenses/$pkgname/COPYING"
|
||||
}
|
Loading…
Reference in a new issue