Fix/clean several hundred package makefiles
[openwrt/svn-archive/archive.git] / net / miau / Makefile
1 #
2 # Copyright (C) 2006 OpenWrt.org
3 #
4 # This is free software, licensed under the GNU General Public License v2.
5 # See /LICENSE for more information.
6 #
7 # $Id$
8
9 include $(TOPDIR)/rules.mk
10
11 PKG_NAME:=miau
12 PKG_VERSION:=0.6.0.2
13 PKG_RELEASE:=1
14 PKG_MD5SUM:=1b78d219a03655399c165eeb021cddd8
15
16 PKG_SOURCE_URL:= @SF/miau
17 PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
18 PKG_CAT:=zcat
19
20 PKG_BUILD_DIR:=$(BUILD_DIR)/$(PKG_NAME)-$(PKG_VERSION)
21 PKG_INSTALL_DIR:=$(PKG_BUILD_DIR)/ipkg-install
22
23 include $(INCLUDE_DIR)/package.mk
24
25 define Package/miau
26 SECTION:=net
27 CATEGORY:=Network
28 TITLE:=Another IRC-bouncer/proxy
29 DESCRIPTION:=In short, miau is an IRC-bouncer/proxy.\\\
30 Being more verbose, miau is small but quite featured\\\
31 IRC-bouncer - a service bit like HTTP-proxy, but\\\
32 for IRC-networks.\\\
33 URL:=http://sourceforge.net/projects/miau/
34 endef
35
36 define Build/Configure
37 $(call Build/Configure/Default,--enable-automode \
38 --enable-releasenick \
39 --enable-uptime \
40 --enable-privlog \
41 --enable-onconnect,ac_cv_func_malloc_0_nonnull=yes \
42 ac_cv_func_realloc_0_nonnull=yes)
43 endef
44
45
46 define Build/Compile
47 $(call Build/Compile/Default,DESTDIR="$(PKG_INSTALL_DIR)" install)
48 endef
49
50 define Package/miau/install
51 install -d -m0755 $(1)/usr/bin
52 $(CP) $(PKG_INSTALL_DIR)/usr/bin/$(PKG_NAME) $(1)/usr/bin/
53 install -d -m0755 $(1)/etc/init.d
54 install -d -m0755 $(1)/etc/default
55 install -d -m0755 $(1)/etc/miau
56 install -m0755 ./files/S50miau $(1)/etc/init.d/S50miau
57 install -m0644 ./files/miau $(1)/etc/default/miau
58 install -m0644 ./files/miaurc $(1)/etc/miau/miaurc
59 endef
60
61 $(eval $(call BuildPackage,miau))