Blame view

buildroot/buildroot-2016.08.1/package/unscd/unscd.mk 914 Bytes
6b13f685e   김민수   BSP 최초 추가
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
  ################################################################################
  #
  # unscd
  #
  ################################################################################
  
  UNSCD_VERSION = 0.52
  UNSCD_SOURCE = nscd-$(UNSCD_VERSION).c
  UNSCD_SITE = http://busybox.net/~vda/unscd
  UNSCD_LICENSE = GPLv2
  UNSCD_LICENSE_FILES = $(UNSCD_SOURCE)
  
  define UNSCD_EXTRACT_CMDS
  	cp $(DL_DIR)/$($(PKG)_SOURCE) $(@D)/
  endef
  
  define UNSCD_BUILD_CMDS
  	cd $(@D); \
  	$(TARGET_CC) $(TARGET_CFLAGS) $(TARGET_LDFLAGS) -o nscd $(UNSCD_SOURCE)
  endef
  
  define UNSCD_INSTALL_TARGET_CMDS
  	$(INSTALL) -m 755 -D $(@D)/nscd $(TARGET_DIR)/usr/sbin/nscd
  	$(INSTALL) -m 600 -D package/unscd/nscd.conf $(TARGET_DIR)/etc/nscd.conf
  endef
  
  define UNSCD_INSTALL_INIT_SYSV
  	$(INSTALL) -m 755 -D package/unscd/S46unscd \
  		$(TARGET_DIR)/etc/init.d/S46unscd
  endef
  
  define UNSCD_USERS
  	unscd -1 unscd -1 * - - - unscd user
  endef
  
  $(eval $(generic-package))