jogo 049ce02cbd packages: reiserfsprogs: add missing dependency - libuuid
This patch adds missing libuuid dependency for reiserfsprogs.
Without it the package fails to install because of missing
dependency to libuuid.

Signed-off-by: Jiri Slachta <slachta@cesnet.cz>
Signed-off-by: Jonas Gorski <jogo@openwrt.org>

git-svn-id: svn://svn.openwrt.org/openwrt/packages@37675 3c298f89-4303-0410-b956-a3cf2f4a3e73
2013-08-04 12:03:12 +00:00

45 lines
1.1 KiB
Makefile

#
# Copyright (C) 2006-2009 OpenWrt.org
#
# This is free software, licensed under the GNU General Public License v2.
# See /LICENSE for more information.
#
include $(TOPDIR)/rules.mk
PKG_NAME:=reiserfsprogs
PKG_VERSION:=3.6.21
PKG_RELEASE:=1
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
PKG_SOURCE_URL:=@KERNEL/linux/utils/fs/reiserfs/
PKG_MD5SUM:=bc00c7c4e047902575dc4e1c64ab3ba4
PKG_FIXUP:=autoreconf
PKG_INSTALL:=1
include $(INCLUDE_DIR)/package.mk
define Package/reiserfsprogs
SECTION:=utils
CATEGORY:=Utilities
SUBMENU:=Filesystem
TITLE:=ReiserFS filesystems utilities
DEPENDS:=+libuuid
URL:=http://www.namesys.com/
endef
define Package/reiserfsprogs/description
This package contains utilities to create, check,
resize, and debug ReiserFS filesystems.
endef
define Package/reiserfsprogs/install
$(INSTALL_DIR) $(1)/usr/sbin
$(INSTALL_BIN) $(foreach bin,debugreiserfs mkreiserfs reiserfsck reiserfstune resize_reiserfs,$(PKG_INSTALL_DIR)/usr/sbin/$(bin)) $(1)/usr/sbin/
ln -sf mkreiserfs $(1)/usr/sbin/mkfs.reiserfs
ln -sf reiserfsck $(1)/usr/sbin/fsck.reiserfs
endef
$(eval $(call BuildPackage,reiserfsprogs))