From bd267027f3f7bbf6c1c8701bc2d000dd15ac8455 Mon Sep 17 00:00:00 2001 From: Hauke Mehrtens Date: Mon, 13 Jul 2015 19:50:57 +0000 Subject: [PATCH] qrencode: moved to github Signed-off-by: Hauke Mehrtens SVN-Revision: 46332 --- libs/qrencode/Makefile | 67 ------------------------------------------ 1 file changed, 67 deletions(-) delete mode 100644 libs/qrencode/Makefile diff --git a/libs/qrencode/Makefile b/libs/qrencode/Makefile deleted file mode 100644 index da9a46fcc..000000000 --- a/libs/qrencode/Makefile +++ /dev/null @@ -1,67 +0,0 @@ -# -# Copyright (C) 2006-2012 OpenWrt.org -# -# This is free software, licensed under the GNU General Public License v2. -# See /LICENSE for more information. -# - -include $(TOPDIR)/rules.mk - -PKG_NAME:=qrencode -PKG_VERSION:=3.4.3 -PKG_RELEASE:=1 - -PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz -PKG_SOURCE_URL:=http://fukuchi.org/works/qrencode/ -PKG_MD5SUM:=2bb7fb7c7bd1a4042d4910b29609319e - -include $(INCLUDE_DIR)/package.mk - -define Package/libqrencode - SECTION:=libs - CATEGORY:=Libraries - TITLE:=Library for encoding data in a QR Code symbol - URL:=http://fukuchi.org/works/qrencode/ -endef - -define Package/libqrencode/description -Libqrencode is a C library for encoding data in a QR Code symbol, -a kind of 2D symbology that can be scanned by handy terminals such -as a mobile phone with CCD. The capacity of QR Code is up to 7000 -digits or 4000 characters, and is highly robust. - - -endef - -CONFIGURE_ARGS+= \ - --enable-shared \ - --enable-static \ - --disable-rpath \ - --disable-sdltest \ - --without-tools \ - --without-tests - -TARGET_LDFLAGS+= -s - -define Build/Compile - $(MAKE) -C $(PKG_BUILD_DIR) \ - $(TARGET_CONFIGURE_OPTS) \ - CFLAGS="$(TARGET_CFLAGS)" \ - LDFLAGS="$(TARGET_LDFLAGS)" \ - DESTDIR="$(PKG_INSTALL_DIR)" \ - all install -endef - -define Build/InstallDev - $(INSTALL_DIR) $(1)/usr/include $(1)/usr/lib $(1)/usr/lib/pkgconfig - $(CP) $(PKG_INSTALL_DIR)/usr/include/qrencode.h $(1)/usr/include/ - $(CP) $(PKG_INSTALL_DIR)/usr/lib/libqrencode.{a,so*} $(1)/usr/lib/ - $(CP) $(PKG_BUILD_DIR)/libqrencode.pc $(1)/usr/lib/pkgconfig/ -endef - -define Package/libqrencode/install - $(INSTALL_DIR) $(1)/usr/lib - $(CP) $(PKG_INSTALL_DIR)/usr/lib/libqrencode.so* $(1)/usr/lib/ -endef - -$(eval $(call BuildPackage,libqrencode)) -- 2.30.2