libv4l: update to 1.22.1
[feed/packages.git] / utils / quota / Makefile
1 #
2 # This is free software, licensed under the GNU General Public License v2.
3 # See /LICENSE for more information.
4 #
5
6 include $(TOPDIR)/rules.mk
7
8 PKG_NAME:=quota
9 PKG_VERSION:=4.09
10 PKG_RELEASE:=1
11
12 PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
13 PKG_SOURCE_URL:=@SF/linuxquota
14 PKG_HASH:=9cdaca154bc92afc3117f0e5f5b3208dd5f84583af1cf061c39baa0a2bb142f9
15
16 PKG_MAINTAINER:=W. Michael Petullo <mike@flyn.org>
17 PKG_LICENSE:=GPL-2.0-or-later
18 PKG_LICENSE_FILES:=COPYING
19
20 PKG_INSTALL:=1
21 PKG_BUILD_PARALLEL:=1
22
23 include $(INCLUDE_DIR)/package.mk
24
25 define Package/quota
26 SECTION:=utils
27 CATEGORY:=Utilities
28 TITLE:= quota
29 URL:=https://sourceforge.net/projects/linuxquota/
30 endef
31
32 define Package/quota/description
33 Utility for managing Linux filesystem quotas
34 endef
35
36 CONFIGURE_ARGS += \
37 --disable-bsd-behaviour \
38 --disable-ext2direct \
39 --disable-ldapmail \
40 --disable-libwrap \
41 --disable-netlink \
42 --disable-rpath \
43 --disable-rpc
44
45 define Package/quota/install
46 $(INSTALL_DIR) $(1)/usr/bin
47 $(INSTALL_BIN) $(PKG_INSTALL_DIR)/usr/bin/* $(1)/usr/bin/
48 $(INSTALL_DIR) $(1)/usr/sbin
49 $(INSTALL_BIN) $(PKG_INSTALL_DIR)/usr/sbin/* $(1)/usr/sbin/
50 endef
51
52 $(eval $(call BuildPackage,quota))