|
Revision 277, 0.7 KB
(checked in by root, 10 months ago)
|
|
Just no need to have crc32 and isa-pnp in both nics and basemods. I'm surprised that I more or less always find something to do when I run out of space.
|
| Line | |
|---|
| 1 | ######################## |
|---|
| 2 | # |
|---|
| 3 | # wsmenu |
|---|
| 4 | # Made by Brad Skiff (and hacked a little by Thomas) |
|---|
| 5 | # |
|---|
| 6 | ######################## |
|---|
| 7 | WSMENU_PKG_DIR=$(PACKAGES_DIR)/wsmenu |
|---|
| 8 | |
|---|
| 9 | wsmenu: |
|---|
| 10 | -rm -r $(WSMENU_PKG_DIR) |
|---|
| 11 | mkdir -p $(WSMENU_PKG_DIR)/etc |
|---|
| 12 | |
|---|
| 13 | cp -a $(PACKAGES_SKELETON_DIR)/wsmenu/* $(WSMENU_PKG_DIR)/. |
|---|
| 14 | # And, no .svn of course. |
|---|
| 15 | -find $(WSMENU_PKG_DIR) -type d -name CVS -exec $(RM) -r {} \; > /dev/null 2>&1 |
|---|
| 16 | -find $(WSMENU_PKG_DIR) -type d -name .svn -exec $(RM) -r {} \; > /dev/null 2>&1 |
|---|
| 17 | |
|---|
| 18 | # Makes the bz2 and ffw files and places them under |
|---|
| 19 | # /floppyfw/packages. |
|---|
| 20 | |
|---|
| 21 | # Just to make sure: |
|---|
| 22 | chmod 755 $(WSMENU_PKG_DIR)/etc/* |
|---|
| 23 | |
|---|
| 24 | (cd $(PACKAGES_DIR); sh mkpack wsmenu) |
|---|
| 25 | |
|---|
| 26 | wsmenu-clean: |
|---|
| 27 | -rm -f $(PACKAGES_DIR)/wsmenu.bz2 |
|---|
| 28 | -rm -f $(PACKAGES_DIR)/wsmenu.ffw |
|---|
| 29 | -rm -r $(WSMENU_PKG_DIR) |
|---|
| 30 | |
|---|