mirror of
https://github.com/openwrt/packages.git
synced 2025-02-07 03:29:52 +00:00
- updated Makefile fields license (GPL3) and COPYING as license file - fix config directive - split package to shared library and application (another package, fatresize has dependency to libparted) Signed-off-by: Oskari Rauta <oskari.rauta@gmail.com>
8 lines
112 B
Bash
8 lines
112 B
Bash
#!/bin/sh
|
|
|
|
case "$1" in
|
|
"parted")
|
|
test $(/sbin/parted --version | grep '^Copyright' | wc -l) -gt 0
|
|
;;
|
|
esac
|