mirror of
git://projects.qi-hardware.com/openwrt-xburst.git
synced 2024-11-10 14:43:07 +02:00
Add libpthread package
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@600 3c298f89-4303-0410-b956-a3cf2f4a3e73
This commit is contained in:
parent
b653565256
commit
461d05dcd4
6
openwrt/package/libpthread/Config.in
Normal file
6
openwrt/package/libpthread/Config.in
Normal file
@ -0,0 +1,6 @@
|
||||
config BR2_PACKAGE_LIBPTHREAD
|
||||
tristate "libpthread (POSIX threads library)"
|
||||
default m
|
||||
help
|
||||
POSIX threads library
|
||||
|
36
openwrt/package/libpthread/Makefile
Normal file
36
openwrt/package/libpthread/Makefile
Normal file
@ -0,0 +1,36 @@
|
||||
# $Id$
|
||||
|
||||
include $(TOPDIR)/rules.mk
|
||||
|
||||
PKG_NAME := libpthread
|
||||
PKG_VERSION := 0.9.27
|
||||
PKG_RELEASE := 1
|
||||
|
||||
PKG_SOURCE_DIR := $(PKG_NAME)-$(PKG_VERSION)
|
||||
PKG_BUILD_DIR := $(BUILD_DIR)/$(PKG_SOURCE_DIR)
|
||||
PKG_IPK := $(PACKAGE_DIR)/$(PKG_NAME)_$(PKG_VERSION)-$(PKG_RELEASE)_$(ARCH).ipk
|
||||
PKG_IPK_DIR :=$(PKG_BUILD_DIR)/ipkg/
|
||||
|
||||
.NOTPARALLEL:
|
||||
|
||||
$(PKG_IPK): $(STAGING_DIR)/lib/libpthread.so
|
||||
rm -rf $(PKG_BUILD_DIR)
|
||||
$(SCRIPT_DIR)/make-ipkg-dir.sh $(PKG_IPK_DIR) $(PKG_NAME).control $(PKG_VERSION)-$(PKG_RELEASE) $(ARCH)
|
||||
mkdir -p $(PKG_IPK_DIR)/lib
|
||||
cp -fp $(STAGING_DIR)/lib/libpthread.so.* $(PKG_IPK_DIR)/lib/
|
||||
cp -fp $(STAGING_DIR)/lib/libpthread-*.so $(PKG_IPK_DIR)/lib/
|
||||
$(STRIP) $(PKG_IPK_DIR)/lib/*
|
||||
mkdir -p $(PACKAGE_DIR)
|
||||
$(IPKG_BUILD) $(PKG_IPK_DIR) $(PACKAGE_DIR)
|
||||
|
||||
$(IPKG_STATE_DIR)/info/$(PKG_NAME).list: $(PKG_IPK)
|
||||
$(IPKG) install $(PKG_IPK)
|
||||
|
||||
source:
|
||||
prepare:
|
||||
compile: $(PKG_IPK)
|
||||
install: $(IPKG_STATE_DIR)/info/$(PKG_NAME).list
|
||||
|
||||
clean:
|
||||
rm -rf $(PKG_BUILD_DIR)
|
||||
rm -f $(PKG_IPK)
|
6
openwrt/package/libpthread/libpthread.control
Normal file
6
openwrt/package/libpthread/libpthread.control
Normal file
@ -0,0 +1,6 @@
|
||||
Package: libpthread
|
||||
Priority: optional
|
||||
Section: libs
|
||||
Maintainer: Nico <nthill@free.fr>
|
||||
Source: buildroot internal
|
||||
Description: POSIX threads library
|
Loading…
Reference in New Issue
Block a user