summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorWaldemar Brodkorb <wbx@openadk.org>2014-06-22 20:07:01 +0200
committerWaldemar Brodkorb <wbx@openadk.org>2014-06-22 21:33:30 +0200
commitacf9bc7ca1c1e255c7c351aa43fc7330f6a4f27f (patch)
tree37429bdaba9e211a5a80d490d7a57f58f6e48ab0
parent281e95ff4c4e83b2f560d96d2c06ea6a668b4db3 (diff)
add basic opkg package for target
-rw-r--r--TODO1
-rw-r--r--package/opkg/.templateprog/Makefile29
-rw-r--r--package/opkg/Makefile35
3 files changed, 64 insertions, 1 deletions
diff --git a/TODO b/TODO
index 763ede339..82bef79b6 100644
--- a/TODO
+++ b/TODO
@@ -17,7 +17,6 @@ new or update packages:
- port weston / wayland
- add btrfs-utils
- port uuterm
-- port opkg with gpg signing
- port msmtp
- rutorrent porting
- lms perl
diff --git a/package/opkg/.templateprog/Makefile b/package/opkg/.templateprog/Makefile
new file mode 100644
index 000000000..2500b63c7
--- /dev/null
+++ b/package/opkg/.templateprog/Makefile
@@ -0,0 +1,29 @@
+# This file is part of the OpenADK project. OpenADK is copyrighted
+# material, please see the LICENCE file in the top-level directory.
+
+include $(ADK_TOPDIR)/rules.mk
+
+PKG_NAME:= @PKG@
+PKG_VERSION:= @VER@
+PKG_RELEASE:= 1
+PKG_MD5SUM:= add md5sum of package here
+PKG_DESCR:= add short description
+PKG_SECTION:= add section
+PKG_DEPENDS:= add dependendant package names
+PKG_BUILDDEP:= add packages which need to be compiled
+PKG_URL:= add project url
+PKG_SITES:= add download url without package name
+
+# if downloaded package is not ending with .tar.xz use following
+#DISTFILES:= ${PKG_NAME}-${PKG_VERSION}.tar.bz2
+
+include $(ADK_TOPDIR)/mk/package.mk
+
+$(eval $(call PKG_template,@UPKG@,@PKG@,$(PKG_VERSION)-${PKG_RELEASE},${PKG_DEPENDS},${PKG_DESCR},${PKG_SECTION}))
+
+@PKG@-install:
+ $(INSTALL_DIR) $(IDIR_@UPKG@)/usr/bin
+ $(INSTALL_BIN) $(WRKINST)/usr/bin/@PKG@ \
+ $(IDIR_@UPKG@)/usr/bin
+
+include ${ADK_TOPDIR}/mk/pkg-bottom.mk
diff --git a/package/opkg/Makefile b/package/opkg/Makefile
new file mode 100644
index 000000000..fda16e576
--- /dev/null
+++ b/package/opkg/Makefile
@@ -0,0 +1,35 @@
+# This file is part of the OpenADK project. OpenADK is copyrighted
+# material, please see the LICENCE file in the top-level directory.
+
+include $(ADK_TOPDIR)/rules.mk
+
+PKG_NAME:= opkg
+PKG_VERSION:= 0.2.2
+PKG_RELEASE:= 1
+PKG_MD5SUM:= b3ecef90d67d2aed2a14c2116a027482
+PKG_DESCR:= embedded package manager
+PKG_DEPENDS:= libcurl libpthread
+PKG_BUILDDEP:= curl
+PKG_SECTION:= sys/misc
+PKG_URL:= https://code.google.com/p/opkg/
+PKG_SITES:= http://downloads.yoctoproject.org/releases/opkg/
+
+DISTFILES:= ${PKG_NAME}-${PKG_VERSION}.tar.gz
+
+include $(ADK_TOPDIR)/mk/package.mk
+
+$(eval $(call PKG_template,OPKG,opkg,$(PKG_VERSION)-${PKG_RELEASE},${PKG_DEPENDS},${PKG_DESCR},${PKG_SECTION}))
+
+CONFIGURE_ARGS+= --disable-openssl \
+ --disable-ssl-curl \
+ --disable-gpg
+
+opkg-install:
+ $(INSTALL_DIR) $(IDIR_OPKG)/usr/bin
+ $(INSTALL_DIR) $(IDIR_OPKG)/usr/lib
+ $(CP) $(WRKINST)/usr/lib/libopkg.so* \
+ $(IDIR_OPKG)/usr/lib
+ $(INSTALL_BIN) $(WRKINST)/usr/bin/opkg* \
+ $(IDIR_OPKG)/usr/bin
+
+include ${ADK_TOPDIR}/mk/pkg-bottom.mk