Cleanup xorg/libs package makefiles:
* Add md5sums * Use default templates where appropriate * Install only required files * Add missing dependencies git-svn-id: svn://svn.openwrt.org/openwrt/packages@13663 3c298f89-4303-0410-b956-a3cf2f4a3e73
This commit is contained in:
@ -8,13 +8,17 @@
|
||||
|
||||
include $(TOPDIR)/rules.mk
|
||||
|
||||
PKG_BASE_NAME:=libXcursor
|
||||
PKG_NAME:=libXcursor
|
||||
PKG_RELEASE:=2
|
||||
PKG_RELEASE:=3
|
||||
PKG_VERSION:=1.1.9
|
||||
|
||||
PKG_SOURCE_URL:=http://xorg.freedesktop.org/releases/X11R7.4/src/lib/
|
||||
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.bz2
|
||||
PKG_BUILD_DIR=$(BUILD_DIR)/Xorg/$(_CATEGORY)/$(PKG_NAME)-$(PKG_VERSION)/
|
||||
PKG_MD5SUM:=99b7554037a92b260891091e81815a0a
|
||||
PKG_FIXUP:=libtool
|
||||
PKG_INSTALL:=1
|
||||
PKG_BUILD_DEPENDS:=fixesproto
|
||||
|
||||
include $(INCLUDE_DIR)/package.mk
|
||||
|
||||
@ -22,27 +26,29 @@ define Package/libXcursor
|
||||
SECTION:=xorg-lib
|
||||
CATEGORY:=Xorg
|
||||
SUBMENU:=lib
|
||||
DEPENDS:=+libXrender +libXfixes
|
||||
DEPENDS:=+libXrender +libXfixes +libX11
|
||||
TITLE:=libXcursor
|
||||
URL:=http://xorg.freedesktop.org/
|
||||
endef
|
||||
|
||||
CONFIGURE_ARGS += --enable-malloc0returnsnull --without-xcb
|
||||
|
||||
define Build/Compile
|
||||
$(call $(PKG_NAME)/Compile)
|
||||
make -C $(PKG_BUILD_DIR)
|
||||
DESTDIR=$(PKG_INSTALL_DIR) $(MAKE) -C $(PKG_BUILD_DIR) $(MAKE_FLAGS) install
|
||||
find $(PKG_INSTALL_DIR) -name *.la | xargs rm -rf
|
||||
define Build/InstallDev
|
||||
$(INSTALL_DIR) $(1)/usr/{lib/pkgconfig,include/X11/Xcursor}
|
||||
$(INSTALL_DATA) \
|
||||
$(PKG_INSTALL_DIR)/usr/lib/*.{so*,a,la} \
|
||||
$(1)/usr/lib/
|
||||
$(INSTALL_DATA) \
|
||||
$(PKG_INSTALL_DIR)/usr/lib/pkgconfig/* \
|
||||
$(1)/usr/lib/pkgconfig/
|
||||
$(INSTALL_DATA) \
|
||||
$(PKG_INSTALL_DIR)/usr/include/X11/Xcursor/* \
|
||||
$(1)/usr/include/X11/Xcursor
|
||||
endef
|
||||
|
||||
define Package/libXcursor/install
|
||||
$(INSTALL_DIR) $(1)/usr/lib
|
||||
$(CP) $(PKG_INSTALL_DIR)/usr/lib/* $(1)/usr/lib/
|
||||
endef
|
||||
|
||||
define Build/InstallDev
|
||||
$(CP) $(PKG_INSTALL_DIR)/* $(1)/
|
||||
$(INSTALL_DATA) \
|
||||
$(PKG_INSTALL_DIR)/usr/lib/*.so* \
|
||||
$(1)/usr/lib/
|
||||
endef
|
||||
|
||||
$(eval $(call BuildPackage,libXcursor))
|
||||
|
Reference in New Issue
Block a user