From 0a862b0777af6ca295151ce04868738175993dd0 Mon Sep 17 00:00:00 2001 From: mid-kid Date: Fri, 28 Oct 2016 00:04:41 +0200 Subject: [PATCH] Added compton --- satellites/compton-git.sat | 17 +++++++++++++++++ satellites/libconfig.sat | 14 ++++++++++++++ 2 files changed, 31 insertions(+) create mode 100644 satellites/compton-git.sat create mode 100644 satellites/libconfig.sat diff --git a/satellites/compton-git.sat b/satellites/compton-git.sat new file mode 100644 index 0000000..8af6ce9 --- /dev/null +++ b/satellites/compton-git.sat @@ -0,0 +1,17 @@ +import 'vcs/git' + +name=compton + +vcs_git "https://github.com/chjj/$name" +header_end + +cd "$name" +make install \ + DESTDIR="$dir_install" \ + PREFIX="/$dir_prefix" \ + BINDIR="/$dir_prefix/$dir_bindir" \ + MANDIR="/$dir_prefix/$dir_mandir" \ + APPDIR="/$dir_prefix/$dir_datadir/applications" \ + INODIR="/$dir_prefix/$dir_datadir/icons/hicolor" + +# vim:set tabstop=4 shiftwidth=4 syntax=sh expandtab: diff --git a/satellites/libconfig.sat b/satellites/libconfig.sat new file mode 100644 index 0000000..d6ca288 --- /dev/null +++ b/satellites/libconfig.sat @@ -0,0 +1,14 @@ +import 'compile/configure' + +name=libconfig +version=1.5 +update_url="http://www.hyperrealm.com/$name/" + +dlextract "http://www.hyperrealm.com/$name/$name-$version.tar.gz" \ + 'a939c4990d74e6fc1ee62be05716f633' +header_end + +cd "$name-$version" +compile_configure -- --disable-static + +# vim:set tabstop=4 shiftwidth=4 syntax=sh expandtab: