This commit is contained in:
milisman 2016-04-25 19:07:24 +00:00
parent 2296ab36b0
commit 4618b125b7
2 changed files with 36 additions and 0 deletions

View File

@ -0,0 +1,18 @@
# Description: Common macros pour GNOME 3 (GIT Version)
# URL: http://www.gnome.org
# Maintainer: http://linuxfromscratch.org/
# Packager: milisarge
# Depends on:
name=gnome-common
version=3.18.0
release=1
source=(http://download.gnome.org/sources/$name/${version:0:4}/$name-$version.tar.xz)
build() {
cd $name-$version
./configure --prefix=/usr
make
make DESTDIR=$PKG/ install
}

View File

@ -0,0 +1,18 @@
# Description: Fast and simple GTK+ image viewer
# URL: http://xsisqox.github.io/Viewnior/
# Maintainer: Filip Rex Dimovski, bjorn at krstarica dot com
# packager: milisarge
# Depends on: glib gtk2 gnome-common shared-mime-info exiv2
name=viewnior
version=1.6
release=1
source=(https://github.com/xsisqox/Viewnior/archive/$name-$version.tar.gz)
build() {
cd Viewnior-$name-$version
./autogen.sh
./configure
make
make DESTDIR=$PKG install
}