aboutsummaryrefslogtreecommitdiff
path: root/trunk/Makefile
diff options
context:
space:
mode:
authorrhatto <rhatto@04377dda-e619-0410-9926-eae83683ac58>2008-05-08 22:35:39 +0000
committerrhatto <rhatto@04377dda-e619-0410-9926-eae83683ac58>2008-05-08 22:35:39 +0000
commite774c43bfaba3bbd4e1eb989fc5aa68a14a30646 (patch)
tree85f7fb89e60a9cec713b75e4ae783506d2a3a0e8 /trunk/Makefile
parent7705246e6fe39f48bfcc9f357c056704e08ffc2d (diff)
downloadsimplepkg-e774c43bfaba3bbd4e1eb989fc5aa68a14a30646.tar.gz
simplepkg-e774c43bfaba3bbd4e1eb989fc5aa68a14a30646.tar.bz2
added Makefile and removed simplepkg.SlackBuild
git-svn-id: svn+slack://slack.fluxo.info/var/svn/simplepkg@508 04377dda-e619-0410-9926-eae83683ac58
Diffstat (limited to 'trunk/Makefile')
-rw-r--r--trunk/Makefile77
1 files changed, 77 insertions, 0 deletions
diff --git a/trunk/Makefile b/trunk/Makefile
new file mode 100644
index 0000000..d83db5a
--- /dev/null
+++ b/trunk/Makefile
@@ -0,0 +1,77 @@
+#
+# Simplepkg Makefile by Silvio Rhatto (rhatto at riseup.net).
+#
+# This Makefile is free software; you can redistribute it and/or modify it
+# under the terms of the GNU General Public License as published by the Free
+# Software Foundation; either version 2 of the License, or any later version.
+#
+# This SlackBuild is distributed in the hope that it will be useful, but WITHOUT
+# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
+# FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.
+#
+# You should have received a copy of the GNU General Public License along with
+# this program; if not, write to the Free Software Foundation, Inc., 59 Temple
+# Place - Suite 330, Boston, MA 02111-1307, USA
+#
+
+VERSION = 0.6pre27
+BUILD = 1rha
+PREFIX = /usr
+INSTALL = /usr/bin/install
+
+clean:
+ rm -f *~ # clean local backups
+
+install_lib:
+ $(INSTALL) -D --mode=0644 lib/common.sh $(DESTDIR)/$(PREFIX)/libexec/simplepkg/common.sh
+
+install_bin:
+ $(INSTALL) -D --mode=0755 src/simplaret $(DESTDIR)/$(PREFIX)/bin/simplaret
+ $(INSTALL) -D --mode=0755 src/repos $(DESTDIR)/$(PREFIX)/bin/repos
+ $(INSTALL) -D --mode=0755 src/lspkg $(DESTDIR)/$(PREFIX)/bin/lspkg
+ $(INSTALL) -D --mode=0755 src/mkbuild $(DESTDIR)/$(PREFIX)/bin/mkbuild
+ $(INSTALL) -D --mode=0755 src/mkpatch $(DESTDIR)/$(PREFIX)/bin/mkpatch
+
+install_sbin:
+ $(INSTALL) -D --mode=0755 src/mkjail $(DESTDIR)/$(PREFIX)/sbin/mkjail
+ $(INSTALL) -D --mode=0755 src/templatepkg $(DESTDIR)/$(PREFIX)/sbin/templatepkg
+ $(INSTALL) -D --mode=0755 src/jail-update $(DESTDIR)/$(PREFIX)/sbin/jail-update
+ $(INSTALL) -D --mode=0755 src/jail-commit $(DESTDIR)/$(PREFIX)/sbin/jail-commit
+ $(INSTALL) -D --mode=0755 src/rebuildpkg $(DESTDIR)/$(PREFIX)/sbin/rebuildpkg
+ $(INSTALL) -D --mode=0755 src/createpkg $(DESTDIR)/$(PREFIX)/sbin/createpkg
+ $(INSTALL) -D --mode=0755 src/simpletrack $(DESTDIR)/$(PREFIX)/sbin/simpletrack
+ @cd $(DESTDIR)/usr/sbin && ln -sf jail-upgrade vserver-upgrade
+
+install_doc:
+ $(INSTALL) -D --mode=0644 doc/COPYING $(DESTDIR)/$(PREFIX)/doc/simplepkg-$(VERSION)/COPYING
+ $(INSTALL) -D --mode=0644 doc/TODO $(DESTDIR)/$(PREFIX)/doc/simplepkg-$(VERSION)/TODO
+ $(INSTALL) -D --mode=0644 doc/CHANGELOG $(DESTDIR)/$(PREFIX)/doc/simplepkg-$(VERSION)/CHANGELOG
+ $(INSTALL) -D --mode=0644 doc/README $(DESTDIR)/$(PREFIX)/doc/simplepkg-$(VERSION)/README
+ $(INSTALL) -D --mode=0644 doc/README.pt_BR $(DESTDIR)/$(PREFIX)/doc/simplepkg-$(VERSION)/README.pt_BR
+ $(INSTALL) -D --mode=0644 doc/README.simplaret $(DESTDIR)/$(PREFIX)/doc/simplepkg-$(VERSION)/README.simplaret
+ $(INSTALL) -D --mode=0644 doc/README.simplaret.pt_BR $(DESTDIR)/$(PREFIX)/doc/simplepkg-$(VERSION)/README.simplaret.pt_BR
+
+install_config:
+ $(INSTALL) -D --mode=0644 conf/simplepkg.conf.new $(DESTDIR)/etc/simplepkg/simplepkg.conf.new
+ $(INSTALL) -D --mode=0644 conf/repos.conf.new $(DESTDIR)/etc/simplepkg/repos.conf.new
+ @mkdir -p $(DESTDIR)/etc/simplepkg/defaults/mkbuild/
+ @cp mkbuild/* $(DESTDIR)/etc/simplepkg/defaults/mkbuild/
+
+install_defaults:
+ @mkdir -p $(DESTDIR)/etc/simplepkg/{defaults/mkbuild,templates}
+ @rsync -av --exclude=.svn templates/* $(DESTDIR)/etc/simplepkg/defaults/templates/
+ @chmod +x $(DESTDIR)/etc/simplepkg/defaults/templates/vserver/vserver.s/*.sh
+ @chmod +x $(DESTDIR)/etc/simplepkg/defaults/templates/vserver-legacy/vserver-legacy.s/*.sh
+
+install: clean
+ @make install_lib install_bin install_sbin install_doc install_config install_defaults
+ $(INSTALL) -D --mode=0644 install/slack-desc $(DESTDIR)/install/slack-desc
+ $(INSTALL) -D --mode=0755 install/doinst.sh $(DESTDIR)/install/doinst.sh
+
+package:
+ echo "Remember to run this option as root!"
+ @rm -rf /tmp/package-simplepkg
+ @mkdir -p /tmp/package-simplepkg
+ @make DESTDIR=/tmp/package_simplepkg install
+ @cd /tmp/package-simplepkg && makepkg -c y -l y /tmp/simplepkg-$(VERSION)-noarch-$(BUILD).tgz && cd - && rm -rf /tmp/package-simplepkg
+ echo "Remember to run this option as root!"