diff options
author | Waldemar Brodkorb <wbx@openadk.org> | 2014-03-31 08:41:00 +0200 |
---|---|---|
committer | Waldemar Brodkorb <wbx@openadk.org> | 2014-03-31 08:41:00 +0200 |
commit | 9cea46c6a78c5639492f9bf8e0abfda2dec15e41 (patch) | |
tree | 4f0310d6a14002d4c981fb441d071340c30bc388 /package | |
parent | f04e95ccbeacfbd4b6d8e8bb6bcb6db848bf20e0 (diff) | |
parent | b10c8275eb4684848e0ed000eefe75206cd065a3 (diff) |
Merge branch 'master' of openadk.org:/git/openadk
Diffstat (limited to 'package')
-rw-r--r-- | package/fbsplash/Makefile | 28 | ||||
-rw-r--r-- | package/findutils/Makefile | 1 |
2 files changed, 29 insertions, 0 deletions
diff --git a/package/fbsplash/Makefile b/package/fbsplash/Makefile new file mode 100644 index 000000000..6828894cc --- /dev/null +++ b/package/fbsplash/Makefile @@ -0,0 +1,28 @@ +# This file is part of the OpenADK project. OpenADK is copyrighted +# material, please see the LICENCE file in the top-level directory. + +include $(TOPDIR)/rules.mk + +PKG_NAME:= fbsplash +PKG_VERSION:= 1.0 +PKG_RELEASE:= 1 +PKG_MD5SUM:= aa0a9e735e086228bc245b18e231bf6c +PKG_DESCR:= framebuffer splash utility +PKG_SECTION:= misc +PKG_BUILDDEP:= libjpeg-turbo libpng freetype +PKG_DEPENDS:= libjpeg-turbo libpng libfreetype +PKG_URL:= https://github.com/alanhaggai/fbsplash +PKG_SITES:= http://openadk.org/distfiles/ + +include $(TOPDIR)/mk/package.mk + +$(eval $(call PKG_template,FBSPLASH,fbsplash,$(PKG_VERSION)-${PKG_RELEASE},${PKG_DEPENDS},${PKG_DESCR},${PKG_SECTION})) + +fbsplash-install: + $(INSTALL_DIR) $(IDIR_FBSPLASH)/usr/lib + $(CP) $(WRKINST)/usr/lib/libfb*.so* $(IDIR_FBSPLASH)/usr/lib + $(INSTALL_DIR) $(IDIR_FBSPLASH)/sbin + $(INSTALL_BIN) $(WRKINST)/sbin/{fbcondecor_helper,fbsplashctl} \ + $(IDIR_FBSPLASH)/sbin + +include ${TOPDIR}/mk/pkg-bottom.mk diff --git a/package/findutils/Makefile b/package/findutils/Makefile index 57fdf77b3..2848ac91c 100644 --- a/package/findutils/Makefile +++ b/package/findutils/Makefile @@ -11,6 +11,7 @@ PKG_DESCR:= utilities for finding files PKG_SECTION:= utils PKG_DEPENDS:= libpthread PKG_BUILDDEP:= autotool +HOST_BUILDDEP:= autotool PKG_URL:= http://www.gnu.org/software/findutils/ PKG_SITES:= http://ftp.gnu.org/pub/gnu/findutils/ |