Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/muink/luci-app-packagesync
Used to build a local openwrt mirror feeds source on the router
https://github.com/muink/luci-app-packagesync
fantastic-package luci luci-app openwrt openwrt-mirror openwrt-package rsync
Last synced: 9 days ago
JSON representation
Used to build a local openwrt mirror feeds source on the router
- Host: GitHub
- URL: https://github.com/muink/luci-app-packagesync
- Owner: muink
- License: gpl-3.0
- Created: 2023-01-23T13:58:11.000Z (almost 2 years ago)
- Default Branch: master
- Last Pushed: 2024-08-15T02:58:25.000Z (3 months ago)
- Last Synced: 2024-08-15T03:51:07.526Z (3 months ago)
- Topics: fantastic-package, luci, luci-app, openwrt, openwrt-mirror, openwrt-package, rsync
- Language: Shell
- Homepage:
- Size: 111 KB
- Stars: 1
- Watchers: 2
- Forks: 2
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# luci-app-packagesync
Used to build a local openwrt mirror feeds source on the router
### How to install
1. Goto ~~[releases](https://github.com/muink/luci-app-packagesync/tree/releases)~~ [here](https://fantastic-packages.github.io/packages/)
2. Download the latest version of ipk
3. Login router and goto **System --> Software**
4. Upload and install ipk
5. Reboot if the app is not automatically added in page
6. Goto **System --> Local software source**### Build
- Compile from OpenWrt/LEDE SDK
```
# Take the x86_64 platform as an example
tar xjf openwrt-sdk-21.02.3-x86-64_gcc-8.4.0_musl.Linux-x86_64.tar.xz
# Go to the SDK root dir
cd OpenWrt-sdk-*-x86_64_*
# First run to generate a .config file
make menuconfig
./scripts/feeds update -a
./scripts/feeds install -a
# Get Makefile
git clone --depth 1 --branch master --single-branch --no-checkout https://github.com/muink/luci-app-packagesync.git package/luci-app-packagesync
pushd package/luci-app-packagesync
umask 022
git checkout
popd
# Select the package LuCI -> Applications -> luci-app-packagesync
make menuconfig
# Start compiling
make package/luci-app-packagesync/compile V=99
```### License
- This project is licensed under the [GPL-3.0](https://www.gnu.org/licenses/gpl-3.0.html)