blob: 1b865b5d9a48fb2e810dbfe1c69ec6f54ef2368f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
# Description:
# URL: https://live.gnome.org/Design/Apps/Contacts
# Maintainer: NuTyX GNOME team
# Packager: piernov <piernov@piernov.org>
# Depends on: folks, libnotify,telepathy-mission-control
# Run on: folks,libnotify,telepathy-mission-control
name=gnome-contacts
version=0.1.3
release=1
source=(http://download.gnome.org/sources/$name/${version%.*}/$name-$version.tar.xz)
build() {
cd $name-$version
PYTHON=python2 ./configure --prefix=/usr \
--sysconfdir=/etc
make
make DESTDIR=$PKG install
}
|