16 lines
381 B
C
16 lines
381 B
C
#ifndef BOB_H_H
|
|
#define BOB_H_H
|
|
|
|
#define VERSION "1.0.0"
|
|
|
|
/* Not recommend modifiying this unless you know what you are doing */
|
|
#define MAX_PKG_NAME_LENGTH 128
|
|
#define MAX_PKGS 128
|
|
|
|
/* URL to download binaries from */
|
|
/* For Github, use https://raw.githubusercontent.com/username/repo/branch */
|
|
#define URL "https://bob.night0721.xyz"
|
|
|
|
#define DEST_DIR "/usr/local/bin/"
|
|
|
|
#endif
|