- #
- # This is free software, licensed under the GNU General Public License v2.
- # See /LICENSE for more information.
- #
-
- include $(TOPDIR)/rules.mk
-
- PKG_NAME:=quota
- PKG_VERSION:=4.06
- PKG_RELEASE:=1
-
- PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
- PKG_SOURCE_URL:=@SF/linuxquota
- PKG_HASH:=2f3e03039f378d4f0d97acdb49daf581dcaad64d2e1ddf129495fd579fbd268d
-
- PKG_MAINTAINER:=W. Michael Petullo <mike@flyn.org>
- PKG_LICENSE:=GPL-2.0-or-later
- PKG_LICENSE_FILES:=COPYING
-
- PKG_INSTALL:=1
- PKG_BUILD_PARALLEL:=1
-
- include $(INCLUDE_DIR)/package.mk
-
- define Package/quota
- SECTION:=utils
- CATEGORY:=Utilities
- TITLE:= quota
- URL:=https://sourceforge.net/projects/linuxquota/
- endef
-
- define Package/quota/description
- Utility for managing Linux filesystem quotas
- endef
-
- CONFIGURE_ARGS += \
- --disable-bsd-behaviour \
- --disable-ext2direct \
- --disable-ldapmail \
- --disable-libwrap \
- --disable-netlink \
- --disable-rpath \
- --disable-rpc
-
- define Package/quota/install
- $(INSTALL_DIR) $(1)/usr/bin
- $(INSTALL_BIN) $(PKG_INSTALL_DIR)/usr/bin/* $(1)/usr/bin/
- $(INSTALL_DIR) $(1)/usr/sbin
- $(INSTALL_BIN) $(PKG_INSTALL_DIR)/usr/sbin/* $(1)/usr/sbin/
- endef
-
- $(eval $(call BuildPackage,quota))
|